diff --git a/hyperledger_fabric/1.0.4/base.yaml b/hyperledger_fabric/1.0.4/base.yaml index 043b08b3..b8047b6e 100644 --- a/hyperledger_fabric/1.0.4/base.yaml +++ b/hyperledger_fabric/1.0.4/base.yaml @@ -90,7 +90,7 @@ 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 - - CHANNEL_NAME:="businesschannel" + - 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/1.0.4/config_update/add-org.sh b/hyperledger_fabric/1.0.4/config_update/add-org.sh index 4ff49904..48a69715 100644 --- a/hyperledger_fabric/1.0.4/config_update/add-org.sh +++ b/hyperledger_fabric/1.0.4/config_update/add-org.sh @@ -18,10 +18,10 @@ echo "Generate new certificates" configtxgen -profile TwoOrgsOrdererGenesis -outputBlock ./peer/channel-artifacts/orderer_genesis.block echo "Create the configuration tx" -CHANNEL_NAME=newchannel -configtxgen -profile TwoOrgsChannel -outputCreateChannelTx ./peer/channel-artifacts/channel.tx -channelID ${CHANNEL_NAME} +APP_CHANNEL=newchannel +configtxgen -profile TwoOrgsChannel -outputCreateChannelTx ./peer/channel-artifacts/channel.tx -channelID ${APP_CHANNEL} echo "Define the anchor peer for Org1 on the channel" -configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org1MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org1MSP -configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org2MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org2MSP -configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org3MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org3MSP \ No newline at end of file +configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org1MSPanchors.tx -channelID ${APP_CHANNEL} -asOrg Org1MSP +configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org2MSPanchors.tx -channelID ${APP_CHANNEL} -asOrg Org2MSP +configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org3MSPanchors.tx -channelID ${APP_CHANNEL} -asOrg Org3MSP \ No newline at end of file diff --git a/hyperledger_fabric/1.0.4/scripts/func.sh b/hyperledger_fabric/1.0.4/scripts/func.sh index 04e5fcbe..5ee9e0d5 100644 --- a/hyperledger_fabric/1.0.4/scripts/func.sh +++ b/hyperledger_fabric/1.0.4/scripts/func.sh @@ -104,7 +104,7 @@ channelCreateAction(){ } # Use peer0/org1 to create a channel -# channelCreate channel_name org peer +# channelCreate APP_CHANNEL org peer channelCreate() { local channel=$1 local org=$2 diff --git a/hyperledger_fabric/1.0.4/scripts/gen_config.sh b/hyperledger_fabric/1.0.4/scripts/gen_config.sh index c52b2562..f8e1b2e4 100644 --- a/hyperledger_fabric/1.0.4/scripts/gen_config.sh +++ b/hyperledger_fabric/1.0.4/scripts/gen_config.sh @@ -51,11 +51,11 @@ echo_b "Generate genesis block file for system channel using configtx.yaml" con_exec configtxgen -profile TwoOrgsOrdererGenesis -outputBlock /tmp/${CHANNEL_ARTIFACTS}/${ORDERER_GENESIS} echo_b "Create the new app channel tx using configtx.yaml" -con_exec configtxgen -profile TwoOrgsChannel -outputCreateChannelTx /tmp/$CHANNEL_ARTIFACTS/channel.tx -channelID ${CHANNEL_NAME} +con_exec configtxgen -profile TwoOrgsChannel -outputCreateChannelTx /tmp/$CHANNEL_ARTIFACTS/channel.tx -channelID ${APP_CHANNEL} echo_b "Create the anchor peer configuration tx using configtx.yaml" -con_exec configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate /tmp/${CHANNEL_ARTIFACTS}/Org1MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org1MSP -con_exec configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate /tmp/${CHANNEL_ARTIFACTS}/Org2MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org2MSP +con_exec configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate /tmp/${CHANNEL_ARTIFACTS}/Org1MSPanchors.tx -channelID ${APP_CHANNEL} -asOrg Org1MSP +con_exec configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate /tmp/${CHANNEL_ARTIFACTS}/Org2MSPanchors.tx -channelID ${APP_CHANNEL} -asOrg Org2MSP echo_b "Remove the container $GEN_CONTAINER" && docker rm -f $GEN_CONTAINER diff --git a/hyperledger_fabric/1.0.4/scripts/init_chaincode_dev.sh b/hyperledger_fabric/1.0.4/scripts/init_chaincode_dev.sh index 7e4381fc..1e045284 100644 --- a/hyperledger_fabric/1.0.4/scripts/init_chaincode_dev.sh +++ b/hyperledger_fabric/1.0.4/scripts/init_chaincode_dev.sh @@ -14,7 +14,7 @@ echo " ==========initialize businesschannel========== " echo " ============================================== " echo -echo_b "Channel name: "${CHANNEL_NAME} +echo_b "Channel name: "${APP_CHANNEL} ## Create channel echo_b "Creating channel..." @@ -24,7 +24,7 @@ sleep 1 ## Join all the peers to the channel echo_b "Having peer0 join the channel..." -channelJoin ${CHANNEL_NAME} 0 +channelJoin ${APP_CHANNEL} 0 sleep 1 diff --git a/hyperledger_fabric/1.0.4/scripts/initialize_peer0.sh b/hyperledger_fabric/1.0.4/scripts/initialize_peer0.sh index 1e33e68a..67de2270 100644 --- a/hyperledger_fabric/1.0.4/scripts/initialize_peer0.sh +++ b/hyperledger_fabric/1.0.4/scripts/initialize_peer0.sh @@ -10,18 +10,18 @@ fi echo_b " ========== Network initialization start ========== " ## Create channel -echo_b "Creating channel ${CHANNEL_NAME}..." -channelCreate ${CHANNEL_NAME} +echo_b "Creating channel ${APP_CHANNEL}..." +channelCreate ${APP_CHANNEL} sleep 1 ## Join all the peers to the channel echo_b "Having peer0 join the channel..." -channelJoin ${CHANNEL_NAME} 0 +channelJoin ${APP_CHANNEL} 0 ## Set the anchor peers for each org in the channel echo_b "Updating anchor peers for peer0/org1... no use for only single channel" -updateAnchorPeers ${CHANNEL_NAME} 0 +updateAnchorPeers ${APP_CHANNEL} 0 ## Install chaincode on all peers echo_b "Installing chaincode on peer0..." @@ -30,7 +30,7 @@ chaincodeInstall 0 ${CC_INIT_ARGS} # Instantiate chaincode on all peers # Instantiate can only be executed once on any node echo_b "Instantiating chaincode on the channel..." -chaincodeInstantiate ${CHANNEL_NAME} 0 +chaincodeInstantiate ${APP_CHANNEL} 0 echo_g "=============== All GOOD, network initialization done =============== " echo diff --git a/hyperledger_fabric/1.0.4/scripts/test_cc_instantiate.sh b/hyperledger_fabric/1.0.4/scripts/test_cc_instantiate.sh index 0b40d610..e6195e2e 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_cc_instantiate.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_cc_instantiate.sh @@ -10,7 +10,7 @@ fi # Instantiate chaincode on all peers # Instantiate can only be executed once on any node echo_b "Instantiating chaincode on all 2 orgs (once for each org)..." -chaincodeInstantiate ${CHANNEL_NAME} 1 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_INIT_ARGS} -chaincodeInstantiate ${CHANNEL_NAME} 2 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_INIT_ARGS} +chaincodeInstantiate ${APP_CHANNEL} 1 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_INIT_ARGS} +chaincodeInstantiate ${APP_CHANNEL} 2 0 ${CC_NAME} ${CC_INIT_VERSION} ${CC_INIT_ARGS} echo_g "=== Instantiate chaincode done ===" diff --git a/hyperledger_fabric/1.0.4/scripts/test_cc_invoke_query.sh b/hyperledger_fabric/1.0.4/scripts/test_cc_invoke_query.sh index 17a783c3..7b4187ac 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_cc_invoke_query.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_cc_invoke_query.sh @@ -9,24 +9,24 @@ fi #Query on chaincode on Peer0/Org1 echo_b "Querying chaincode on peer org2/peer0..." -chaincodeQuery ${CHANNEL_NAME} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 100 +chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 100 #Invoke on chaincode on Peer0/Org1 echo_b "Sending invoke transaction (transfer 10) on org1/peer0..." -chaincodeInvoke ${CHANNEL_NAME} 1 0 ${CC_NAME} ${CC_INVOKE_ARGS} +chaincodeInvoke ${APP_CHANNEL} 1 0 ${CC_NAME} ${CC_INVOKE_ARGS} #Query on chaincode on Peer1/Org2, check if the result is 90 echo_b "Querying chaincode on peer 1 and 3..." -chaincodeQuery ${CHANNEL_NAME} 1 1 ${CC_NAME} ${CC_QUERY_ARGS} 90 -chaincodeQuery ${CHANNEL_NAME} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 90 +chaincodeQuery ${APP_CHANNEL} 1 1 ${CC_NAME} ${CC_QUERY_ARGS} 90 +chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 90 #Invoke on chaincode on Peer1/Org2 echo_b "Sending invoke transaction on org2/peer3..." -chaincodeInvoke ${CHANNEL_NAME} 2 1 ${CC_NAME} ${CC_INVOKE_ARGS} +chaincodeInvoke ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_INVOKE_ARGS} #Query on chaincode on Peer1/Org2, check if the result is 80 echo_b "Querying chaincode on all 4peers..." -chaincodeQuery ${CHANNEL_NAME} 1 0 ${CC_NAME} ${CC_QUERY_ARGS} 80 -chaincodeQuery ${CHANNEL_NAME} 2 0 ${CC_NAME} ${CC_QUERY_ARGS} 80 +chaincodeQuery ${APP_CHANNEL} 1 0 ${CC_NAME} ${CC_QUERY_ARGS} 80 +chaincodeQuery ${APP_CHANNEL} 2 0 ${CC_NAME} ${CC_QUERY_ARGS} 80 echo_g "=== All GOOD, chaincode invoke/query completed ===" diff --git a/hyperledger_fabric/1.0.4/scripts/test_cc_peer0.sh b/hyperledger_fabric/1.0.4/scripts/test_cc_peer0.sh index f2287f02..33e99467 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_cc_peer0.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_cc_peer0.sh @@ -7,20 +7,20 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi -echo_b "Channel name: "${CHANNEL_NAME} +echo_b "Channel name: "${APP_CHANNEL} echo_b "Query the existing value of a" -chaincodeQuery ${CHANNEL_NAME} 0 ${CC_NAME} ${CC_QUERY_ARGS} 100 +chaincodeQuery ${APP_CHANNEL} 0 ${CC_NAME} ${CC_QUERY_ARGS} 100 sleep 1 echo_b "Invoke a transaction to transfer 10 from a to b" -chaincodeInvoke ${CHANNEL_NAME} 0 ${CC_NAME} ${CC_INVOKE_ARGS} +chaincodeInvoke ${APP_CHANNEL} 0 ${CC_NAME} ${CC_INVOKE_ARGS} sleep 1 echo_b "Check if the result of a is 90" -chaincodeQuery ${CHANNEL_NAME} 0 ${CC_NAME} ${CC_QUERY_ARGS} 90 +chaincodeQuery ${APP_CHANNEL} 0 ${CC_NAME} ${CC_QUERY_ARGS} 90 echo echo_g "All GOOD, MVE Test completed" diff --git a/hyperledger_fabric/1.0.4/scripts/test_cc_upgrade.sh b/hyperledger_fabric/1.0.4/scripts/test_cc_upgrade.sh index f7d97d80..0b1562d2 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_cc_upgrade.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_cc_upgrade.sh @@ -15,10 +15,10 @@ chaincodeInstall 2 0 ${CC_NAME} ${CC_UPGRADE_VERSION} ${CC_PATH} chaincodeInstall 2 1 ${CC_NAME} ${CC_UPGRADE_VERSION} ${CC_PATH} # Upgrade on one peer of the channel will update all -chaincodeUpgrade ${CHANNEL_NAME} 1 0 ${CC_NAME} ${CC_UPGRADE_VERSION} ${CC_UPGRADE_ARGS} +chaincodeUpgrade ${APP_CHANNEL} 1 0 ${CC_NAME} ${CC_UPGRADE_VERSION} ${CC_UPGRADE_ARGS} # Query new value, should refresh through all peers in the channel -chaincodeQuery ${CHANNEL_NAME} 1 0 ${CC_NAME} ${CC_QUERY_ARGS} 100 -chaincodeQuery ${CHANNEL_NAME} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 100 +chaincodeQuery ${APP_CHANNEL} 1 0 ${CC_NAME} ${CC_QUERY_ARGS} 100 +chaincodeQuery ${APP_CHANNEL} 2 1 ${CC_NAME} ${CC_QUERY_ARGS} 100 echo_g "=== All GOOD, chaincode Upgrade completed ===" diff --git a/hyperledger_fabric/1.0.4/scripts/test_channel_create.sh b/hyperledger_fabric/1.0.4/scripts/test_channel_create.sh index 0038f706..d0354298 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_channel_create.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_channel_create.sh @@ -8,5 +8,5 @@ elif [ -f scripts/func.sh ]; then fi ## Create channel -echo_b "Creating channel ${CHANNEL_NAME}..." -channelCreate ${CHANNEL_NAME} 1 0 +echo_b "Creating channel ${APP_CHANNEL}..." +channelCreate ${APP_CHANNEL} 1 0 diff --git a/hyperledger_fabric/1.0.4/scripts/test_channel_join.sh b/hyperledger_fabric/1.0.4/scripts/test_channel_join.sh index 9c2132c5..db8f55bb 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_channel_join.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_channel_join.sh @@ -8,17 +8,17 @@ elif [ -f scripts/func.sh ]; then fi ## Join all the peers to the channel -echo_b "Having all peers join the channel ${CHANNEL_NAME}..." +echo_b "Having all peers join the channel ${APP_CHANNEL}..." for org in "${ORGS[@]}" do for peer in "${PEERS[@]}" do - channelJoin ${CHANNEL_NAME} $org $peer + channelJoin ${APP_CHANNEL} $org $peer done done -#channelJoin ${CHANNEL_NAME} 1 0 -#channelJoin ${CHANNEL_NAME} 1 1 -#channelJoin ${CHANNEL_NAME} 2 0 -#channelJoin ${CHANNEL_NAME} 2 1 \ No newline at end of file +#channelJoin ${APP_CHANNEL} 1 0 +#channelJoin ${APP_CHANNEL} 1 1 +#channelJoin ${APP_CHANNEL} 2 0 +#channelJoin ${APP_CHANNEL} 2 1 \ No newline at end of file diff --git a/hyperledger_fabric/1.0.4/scripts/test_fetch.sh b/hyperledger_fabric/1.0.4/scripts/test_fetch.sh index 96c705d4..ad51ae1a 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_fetch.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_fetch.sh @@ -17,7 +17,7 @@ echo_b "=== Fetching blocks ===" for i in {0..4} do echo_b "Fetch block $i" - channelFetch ${CHANNEL_NAME} $org $peer $i + channelFetch ${APP_CHANNEL} $org $peer $i done echo_g "Block fetching done!" diff --git a/hyperledger_fabric/1.0.4/scripts/test_lscc.sh b/hyperledger_fabric/1.0.4/scripts/test_lscc.sh index 738c0148..26466d6a 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_lscc.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_lscc.sh @@ -20,43 +20,43 @@ peer=0 #--cafile ${ORDERER_TLS_CA} \ echo_b "LSCC Get id" -chaincodeQuery "${CHANNEL_NAME}" $org $peer lscc '{"Args":["getid","'${CHANNEL_NAME}'", "'$CC_NAME'"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_NAME'"]}' echo_b "LSCC Get cc ChaincodeDeploymentSpec" -chaincodeQuery "${CHANNEL_NAME}" $org $peer lscc '{"Args":["getdepspec","'${CHANNEL_NAME}'", "'$CC_NAME'"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_NAME'"]}' echo_b "LSCC Get cc bytes" -chaincodeQuery "${CHANNEL_NAME}" $org $peer lscc '{"Args":["getccdata","'${CHANNEL_NAME}'", "'$CC_NAME'"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_NAME'"]}' echo_b "LSCC Get all chaincodes installed on the channel" -chaincodeQuery "${CHANNEL_NAME}" $org $peer lscc '{"Args":["getinstalledchaincodes"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getinstalledchaincodes"]}' echo_b "LSCC Get all chaincodes instantiated on the channel" -chaincodeQuery "${CHANNEL_NAME}" $org $peer lscc '{"Args":["getchaincodes"]}' +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getchaincodes"]}' #peer chaincode query \ -# -C "${CHANNEL_NAME}" \ +# -C "${APP_CHANNEL}" \ # -n lscc \ -# -c '{"Args":["getid","'${CHANNEL_NAME}'", "'$CC_NAME'"]}' +# -c '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_NAME'"]}' #peer chaincode query \ -# -C "${CHANNEL_NAME}" \ +# -C "${APP_CHANNEL}" \ # -n lscc \ -# -c '{"Args":["getdepspec","'${CHANNEL_NAME}'", "'$CC_NAME'"]}' +# -c '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_NAME'"]}' #peer chaincode query \ -# -C "${CHANNEL_NAME}" \ +# -C "${APP_CHANNEL}" \ # -n lscc \ -# -c '{"Args":["getccdata","'${CHANNEL_NAME}'", "'$CC_NAME'"]}' +# -c '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_NAME'"]}' #peer chaincode query \ -# -C "${CHANNEL_NAME}" \ +# -C "${APP_CHANNEL}" \ # -n lscc \ # -c '{"Args":["getinstalledchaincodes"]}' #peer chaincode query \ -# -C "${CHANNEL_NAME}" \ +# -C "${APP_CHANNEL}" \ # -n lscc \ # -c '{"Args":["getchaincodes"]}' diff --git a/hyperledger_fabric/1.0.4/scripts/test_qscc.sh b/hyperledger_fabric/1.0.4/scripts/test_qscc.sh index a76e5e0c..fb91fece 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_qscc.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_qscc.sh @@ -15,19 +15,19 @@ org=1 peer=0 echo_b "QSCC GetChainInfo" -chaincodeQuery "" $org $peer qscc '{"Args":["GetChainInfo","'${CHANNEL_NAME}'"]}' +chaincodeQuery "" $org $peer qscc '{"Args":["GetChainInfo","'${APP_CHANNEL}'"]}' echo_b "QSCC GetBlockByNumber 2" -chaincodeQuery "" $org $peer qscc '{"Args":["GetBlockByNumber","'${CHANNEL_NAME}'","2"]}' +chaincodeQuery "" $org $peer qscc '{"Args":["GetBlockByNumber","'${APP_CHANNEL}'","2"]}' #peer chaincode query \ # -C "" \ # -n qscc \ -# -c '{"Args":["GetChainInfo","'${CHANNEL_NAME}'"]}' +# -c '{"Args":["GetChainInfo","'${APP_CHANNEL}'"]}' #peer chaincode query \ # -C "" \ # -n qscc \ -# -c '{"Args":["GetBlockByNumber","'${CHANNEL_NAME}'","2"]}' +# -c '{"Args":["GetBlockByNumber","'${APP_CHANNEL}'","2"]}' echo_g "QSCC testing done!" \ No newline at end of file diff --git a/hyperledger_fabric/1.0.4/scripts/test_update_anchors.sh b/hyperledger_fabric/1.0.4/scripts/test_update_anchors.sh index 5addbe9f..84cf66bd 100644 --- a/hyperledger_fabric/1.0.4/scripts/test_update_anchors.sh +++ b/hyperledger_fabric/1.0.4/scripts/test_update_anchors.sh @@ -9,7 +9,7 @@ fi ## Set the anchor peers for each org in the channel echo_b "Updating anchor peers for org1..." -updateAnchorPeers ${CHANNEL_NAME} 1 0 +updateAnchorPeers ${APP_CHANNEL} 1 0 echo_b "Updating anchor peers for org2..." -updateAnchorPeers ${CHANNEL_NAME} 2 0 +updateAnchorPeers ${APP_CHANNEL} 2 0 diff --git a/hyperledger_fabric/1.0.4/scripts/variables.sh b/hyperledger_fabric/1.0.4/scripts/variables.sh index 389169d9..9747dae5 100644 --- a/hyperledger_fabric/1.0.4/scripts/variables.sh +++ b/hyperledger_fabric/1.0.4/scripts/variables.sh @@ -4,7 +4,7 @@ # Name of app channel, need to align with the gen_artifacts.sh SYS_CHANNEL="testchainid" -CHANNEL_NAME="businesschannel" +APP_CHANNEL="businesschannel" # Client cmd execute timeout and retry times TIMEOUT="60" diff --git a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block index 5c391c7f..8b4876e4 100644 Binary files a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block and b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block differ diff --git a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block.json b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block.json index 597dc49b..4e1ec460 100644 --- a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block.json +++ b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block.json @@ -559,10 +559,10 @@ }, "signatures": [ { - "signature": "MEUCIQDGZ+RGjyd9QinezJyj5F8Uz7j3kRp0bR0WcH6oK1k6zQIgMutGil+0KkeJujVJXEbwnSxGiMIAsSyiy28XVTSWXrk=", + "signature": "MEQCICBTK1NtaSzO/8bprLBFMVFKGhswtwX3IfjNRRlT3sIPAiBhpY6TxP8exxi69vVh5jFY/l2FClT9QXJ9yDdnzch6RA==", "signature_header": { "creator": "CgdPcmcxTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR1RDQ0FjQ2dBd0lCQWdJUkFKMmZWcUdDMzJYQzVRcGdZc212WXhFd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6RXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qQXhNVE0xTnpFNVdoY05NamN4TVRJNU1UTTFOekU1CldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NUzVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJHVXVSSHFReXdRUVFpd0J3L3B4NTFPekRxRnhPUHM1ClRuWm4vQm1NbFN4eDBUWTA4bHltWUxyYmdKVG5ablFFbTJGQmpLSWhYbllmaUt5SVNraEdmQStqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIbzQyZVBwMDE4aApkOFl0YlNpTnd5L0ZjcFIvcno1QkJUaTVvRVV1b2F2NE1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lBS3d0RUJBCmZpVkpOaDFMWjlGUXZCWEFrYUlmaFpSY25tOTJWSVBEZzdjWUFpQVU3eE1KRzkwZURqMkJTSWliL1I3UU5rRngKemVrTFNVTEk5RzJVVVlBNzdBPT0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "nWfRo8Ry0NWPYM6IZBBy7w6ezB/eMMjy" + "nonce": "TaPOBI/rPSIRyqlTojL6YECz93n+nZtw" } } ] @@ -570,36 +570,36 @@ "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2017-12-05T07:29:42.000Z", + "timestamp": "2017-12-06T07:59:09.000Z", "type": 2 }, "signature_header": { "creator": "CgdPcmcxTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR1RDQ0FjQ2dBd0lCQWdJUkFKMmZWcUdDMzJYQzVRcGdZc212WXhFd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6RXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qQXhNVE0xTnpFNVdoY05NamN4TVRJNU1UTTFOekU1CldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NUzVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJHVXVSSHFReXdRUVFpd0J3L3B4NTFPekRxRnhPUHM1ClRuWm4vQm1NbFN4eDBUWTA4bHltWUxyYmdKVG5ablFFbTJGQmpLSWhYbllmaUt5SVNraEdmQStqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIbzQyZVBwMDE4aApkOFl0YlNpTnd5L0ZjcFIvcno1QkJUaTVvRVV1b2F2NE1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lBS3d0RUJBCmZpVkpOaDFMWjlGUXZCWEFrYUlmaFpSY25tOTJWSVBEZzdjWUFpQVU3eE1KRzkwZURqMkJTSWliL1I3UU5rRngKemVrTFNVTEk5RzJVVVlBNzdBPT0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "vlsgPDaB29Kr/D8YPlPoNKw2WuPNeuld" + "nonce": "Mpgw/vN+llFMDAPkn0zN8KSAMEKfZtQh" } } }, - "signature": "MEQCIEI4/QRCVwBsm4iXPOtI2i00GzaonTbOAt06kJhodD52AiA96N6MlhzExt6Z0K69pkOdNBe11gZmzkNWwFyfn8yCjw==" + "signature": "MEQCIGxgjbuBt9IA1yguwihb5AQE/qz63hlmksrYa/LWh1q8AiByTmZMABzk22Dvs00qaHyEA8O66R0wygeyZ9FCg9sM7A==" } }, "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2017-12-05T07:29:42.000Z", + "timestamp": "2017-12-06T07:59:09.000Z", "type": 1 }, "signature_header": { "creator": "CgpPcmRlcmVyTVNQEvAFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRFRDQ0FiT2dBd0lCQWdJUkFOTjlZdXZ0UFdtL2J4dEQ0QTB6UUMwd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFeU1ERXhNelUzTWpCYUZ3MHlOekV4TWpreE16VTNNakJhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFb2FUYXdWbmI2d0lKR3YvTWtLWFd0RG02YzQ5a0V4YWg3VS9Vb2k4SjBJdFJFRUJMCmdWc1pYUVBtZUxjaEptRVFmQkplT2JDOERVSmk5aVdrZ213djRhTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnRk1nWHZyVTJOVXByTGQ3enBic1ozV1VqY2ZSWApLaFQ3My9QWnNiQjZhaDR3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQVBiSVdvdkpqZEVWYlFlWmxyV2EzQytVCmlYbWtuSzlHSUU1cnVaazI4cC9OQWlCbWk3aFhUQlovZE8vR1RPbDhid2RBRWNqb1ZrdEpuMjlUbFpVVG9SaHYKVGc9PQotLS0tLUVORCAtLS0tLQo=", - "nonce": "z0Rdbzgkba/iGmzjleLDhjo4XT6MZKhR" + "nonce": "3joZIkVo7xTr02j7LhFJgFngHHu/uB0d" } } }, - "signature": "MEUCIQD1J8J+Apml+tgx9/Gr5b5TlHXwpYxFm6PvTGDOYg5lbAIgXZfIKvB8vBM5nM7d/vQiAW5hxPPTlxIEqGJG+4faQkI=" + "signature": "MEQCIFd08iyXEw34+unyd+Ia/B9m0VBgiaaj+Mgbuzw5UjOBAiBMQjoI3tgTnSRzb0dzQBDcusMuHux02wOpp+/lRqsMnQ==" } ] }, "header": { - "data_hash": "oxe/O4KFlUfrU7Z7B668htxp4D2EACr/xrezj9HeuSk=" + "data_hash": "hP1oLEZeDUUqLNBHZf1XPkH8udJRVz/RCDz5+q+KkLc=" }, "metadata": { "metadata": [ diff --git a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block_payload.json b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block_payload.json index c67d528d..fb0fe5bd 100644 --- a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block_payload.json +++ b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_0.block_payload.json @@ -555,10 +555,10 @@ }, "signatures": [ { - "signature": "MEUCIQDGZ+RGjyd9QinezJyj5F8Uz7j3kRp0bR0WcH6oK1k6zQIgMutGil+0KkeJujVJXEbwnSxGiMIAsSyiy28XVTSWXrk=", + "signature": "MEQCICBTK1NtaSzO/8bprLBFMVFKGhswtwX3IfjNRRlT3sIPAiBhpY6TxP8exxi69vVh5jFY/l2FClT9QXJ9yDdnzch6RA==", "signature_header": { "creator": "CgdPcmcxTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR1RDQ0FjQ2dBd0lCQWdJUkFKMmZWcUdDMzJYQzVRcGdZc212WXhFd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6RXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qQXhNVE0xTnpFNVdoY05NamN4TVRJNU1UTTFOekU1CldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NUzVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJHVXVSSHFReXdRUVFpd0J3L3B4NTFPekRxRnhPUHM1ClRuWm4vQm1NbFN4eDBUWTA4bHltWUxyYmdKVG5ablFFbTJGQmpLSWhYbllmaUt5SVNraEdmQStqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIbzQyZVBwMDE4aApkOFl0YlNpTnd5L0ZjcFIvcno1QkJUaTVvRVV1b2F2NE1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lBS3d0RUJBCmZpVkpOaDFMWjlGUXZCWEFrYUlmaFpSY25tOTJWSVBEZzdjWUFpQVU3eE1KRzkwZURqMkJTSWliL1I3UU5rRngKemVrTFNVTEk5RzJVVVlBNzdBPT0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "nWfRo8Ry0NWPYM6IZBBy7w6ezB/eMMjy" + "nonce": "TaPOBI/rPSIRyqlTojL6YECz93n+nZtw" } } ] @@ -566,27 +566,27 @@ "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2017-12-05T07:29:42.000Z", + "timestamp": "2017-12-06T07:59:09.000Z", "type": 2 }, "signature_header": { "creator": "CgdPcmcxTVNQEoAGLS0tLS1CRUdJTiAtLS0tLQpNSUlDR1RDQ0FjQ2dBd0lCQWdJUkFKMmZWcUdDMzJYQzVRcGdZc212WXhFd0NnWUlLb1pJemowRUF3SXdjekVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4R1RBWEJnTlZCQW9URUc5eVp6RXVaWGhoYlhCc1pTNWpiMjB4SERBYUJnTlZCQU1URTJOaApMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1qQXhNVE0xTnpFNVdoY05NamN4TVRJNU1UTTFOekU1CldqQmJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU4KVTJGdUlFWnlZVzVqYVhOamJ6RWZNQjBHQTFVRUF3d1dRV1J0YVc1QWIzSm5NUzVsZUdGdGNHeGxMbU52YlRCWgpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJHVXVSSHFReXdRUVFpd0J3L3B4NTFPekRxRnhPUHM1ClRuWm4vQm1NbFN4eDBUWTA4bHltWUxyYmdKVG5ablFFbTJGQmpLSWhYbllmaUt5SVNraEdmQStqVFRCTE1BNEcKQTFVZER3RUIvd1FFQXdJSGdEQU1CZ05WSFJNQkFmOEVBakFBTUNzR0ExVWRJd1FrTUNLQUlIbzQyZVBwMDE4aApkOFl0YlNpTnd5L0ZjcFIvcno1QkJUaTVvRVV1b2F2NE1Bb0dDQ3FHU000OUJBTUNBMGNBTUVRQ0lBS3d0RUJBCmZpVkpOaDFMWjlGUXZCWEFrYUlmaFpSY25tOTJWSVBEZzdjWUFpQVU3eE1KRzkwZURqMkJTSWliL1I3UU5rRngKemVrTFNVTEk5RzJVVVlBNzdBPT0KLS0tLS1FTkQgLS0tLS0K", - "nonce": "vlsgPDaB29Kr/D8YPlPoNKw2WuPNeuld" + "nonce": "Mpgw/vN+llFMDAPkn0zN8KSAMEKfZtQh" } } }, - "signature": "MEQCIEI4/QRCVwBsm4iXPOtI2i00GzaonTbOAt06kJhodD52AiA96N6MlhzExt6Z0K69pkOdNBe11gZmzkNWwFyfn8yCjw==" + "signature": "MEQCIGxgjbuBt9IA1yguwihb5AQE/qz63hlmksrYa/LWh1q8AiByTmZMABzk22Dvs00qaHyEA8O66R0wygeyZ9FCg9sM7A==" } }, "header": { "channel_header": { "channel_id": "businesschannel", - "timestamp": "2017-12-05T07:29:42.000Z", + "timestamp": "2017-12-06T07:59:09.000Z", "type": 1 }, "signature_header": { "creator": "CgpPcmRlcmVyTVNQEvAFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRFRDQ0FiT2dBd0lCQWdJUkFOTjlZdXZ0UFdtL2J4dEQ0QTB6UUMwd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFeU1ERXhNelUzTWpCYUZ3MHlOekV4TWpreE16VTNNakJhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFb2FUYXdWbmI2d0lKR3YvTWtLWFd0RG02YzQ5a0V4YWg3VS9Vb2k4SjBJdFJFRUJMCmdWc1pYUVBtZUxjaEptRVFmQkplT2JDOERVSmk5aVdrZ213djRhTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnRk1nWHZyVTJOVXByTGQ3enBic1ozV1VqY2ZSWApLaFQ3My9QWnNiQjZhaDR3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQVBiSVdvdkpqZEVWYlFlWmxyV2EzQytVCmlYbWtuSzlHSUU1cnVaazI4cC9OQWlCbWk3aFhUQlovZE8vR1RPbDhid2RBRWNqb1ZrdEpuMjlUbFpVVG9SaHYKVGc9PQotLS0tLUVORCAtLS0tLQo=", - "nonce": "z0Rdbzgkba/iGmzjleLDhjo4XT6MZKhR" + "nonce": "3joZIkVo7xTr02j7LhFJgFngHHu/uB0d" } } } diff --git a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_1.block b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_1.block index 234c25bb..ceb50c62 100644 Binary files a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_1.block and b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_1.block differ diff --git a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_2.block b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_2.block index e2b24353..2084536f 100644 Binary files a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_2.block and b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_2.block differ diff --git a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_3.block index 83650927..20f17e28 100644 Binary files a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_3.block and b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_3.block differ diff --git a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_4.block b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_4.block index 873c14ff..aa8f9e0d 100644 Binary files a/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_4.block and b/hyperledger_fabric/1.0.4/solo/channel-artifacts/businesschannel_4.block differ diff --git a/hyperledger_fabric/1.0.4/solo/channel-artifacts/orderer.genesis.updated.block b/hyperledger_fabric/1.0.4/solo/channel-artifacts/orderer.genesis.updated.block index 411056bd..e86fb3a6 100644 Binary files a/hyperledger_fabric/1.0.4/solo/channel-artifacts/orderer.genesis.updated.block and b/hyperledger_fabric/1.0.4/solo/channel-artifacts/orderer.genesis.updated.block differ diff --git a/hyperledger_fabric/1.0.4/solo/channel-artifacts/testchainid_1.block b/hyperledger_fabric/1.0.4/solo/channel-artifacts/testchainid_1.block index b0c41280..45fedf63 100644 Binary files a/hyperledger_fabric/1.0.4/solo/channel-artifacts/testchainid_1.block and b/hyperledger_fabric/1.0.4/solo/channel-artifacts/testchainid_1.block differ diff --git a/hyperledger_fabric/latest/Makefile b/hyperledger_fabric/latest/Makefile index b0344c80..18f45adf 100644 --- a/hyperledger_fabric/latest/Makefile +++ b/hyperledger_fabric/latest/Makefile @@ -1,8 +1,10 @@ -# mode of the network: solo, kafka, couchdb, dev +# Makefile to bootup the network, and do operations (channel, chaincode) + +# mode of the network: solo, kafka, couchdb, event, dev HLF_MODE ?= solo -CODE_BUILD_WAIT=2 -NETWORK_INIT_WAIT=2 +CODE_BUILD_WAIT=40 # time to wait to build peer/orderer from local code +NETWORK_INIT_WAIT=2 # time to wait the fabric network finish initialization COMPOSE_FILE ?= "docker-compose-2orgs-4peers-solo.yaml" @@ -10,6 +12,8 @@ ifeq ($(HLF_MODE),kafka) COMPOSE_FILE="docker-compose-2orgs-4peers-kafka.yaml" 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),dev) COMPOSE_FILE="docker-compose-1orgs-1peers-dev.yaml" endif @@ -17,79 +21,100 @@ endif all: @echo "Run test with $(COMPOSE_FILE)" @echo "Please make sure u have setup Docker and pulled images by 'make setup'." - sleep 2 - make ready - make lscc qscc fetch_block + make ready # Finish all testing + make stop clean -ready: restart - @echo "Restart, init network and then do cc testing..." - if [ "$(HLF_MODE)" = "dev" ]; then \ - echo "In DEV mode, wait for rebuilding ..." && sleep $(CODE_BUILD_WAIT); \ - make init_peer0; \ - sleep $(NETWORK_INIT_WAIT); \ - make test_cc_peer0; \ - else \ - echo "In Normal mode ..." && sleep 3; \ - make init; \ - sleep $(NETWORK_INIT_WAIT); \ - make test_cc_all; \ - fi +ready: # create/join channel, install/instantiate cc + make gen_config # Will ignore if local config path exists + make restart + make test_channel_create + make test_channel_join + # make update_anchors + make test_cc_install + make test_cc_instantiate + + make test_cc_invoke_query + make test_lscc # test lscc operations + make test_qscc # test qscc operations + make test_fetch_blocks # fetch block files + + make test_configtxlator @echo "Now the fabric network is ready to play" @echo "run 'make cli' to enter into the fabric-cli container." @echo "run 'make stop' when done." +restart: stop start + start: # bootup the fabric network @echo "Start a fabric network with ${COMPOSE_FILE}" - make clean - docker-compose -f ${COMPOSE_FILE} up -d # Start a fabric network - -init: # initialize the fabric network - @echo "Install and instantiate cc example02 on the fabric network" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/initialize_all.sh" - -init_peer0: # initialize the fabric network - @echo "Install and instantiate cc example02 on the fabric dev network" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/initialize_peer0.sh" + @make clean + @docker-compose -f ${COMPOSE_FILE} up -d # Start a fabric network stop: # stop the fabric network - @echo "Stop the fabric network" - docker-compose -f ${COMPOSE_FILE} down # Stop a fabric network - -restart: stop start + @echo "Stop the fabric network..." + @docker-compose -f ${COMPOSE_FILE} down >& /tmp/docker-compose.log # Stop a fabric network chaincode_dev: restart chaincode_init test_cc_peer0 stop +################## Channel testing operations ################ + +test_channel_create: # Init the channel + @echo "Create channel on the fabric network" + docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_create.sh" + +test_channel_join: # Init the channel + @echo "Join channel" + docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_join.sh" + +update_anchors: # Update the anchor peer + @echo "Update anchors on the fabric network" + docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_update_anchors.sh" + ################## Chaincode testing operations ################ -test_cc_all: # test user chaincode on all peers +test_cc: # test chaincode, deprecated + if [ "$(HLF_MODE)" = "dev" ]; then \ + make test_cc_peer0; \ + else \ + make test_cc_invoke_query; \ + fi + +test_cc_install: # Install the chaincode + @echo "Install chaincode on the fabric network" + docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_install.sh" + +test_cc_instantiate: # Instantiate the chaincode + @echo "Instantiate chaincode on the fabric network" + docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_instantiate.sh" + +test_cc_upgrade: # Upgrade the chaincode + @echo "Upgrade chaincode on the fabric network" + docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_upgrade.sh" + +test_cc_invoke_query: # test user chaincode on all peers @echo "Invoke and query cc example02 on all peers" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_all.sh" + docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_invoke_query.sh" -test_cc_peer0: # test single peer - @echo "Invoke and query cc example02 on single peer0" - docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_cc_peer0.sh" - -qscc: # test qscc queries +test_qscc: # test qscc queries + @echo "Test QSCC query" docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_qscc.sh" -lscc: # test lscc quries +test_lscc: # test lscc quries + @echo "Test LSCC query" docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_lscc.sh" -fetch_block: # test channel fetch +# FIXME: docker doesn't support wildcard in cp right now +test_fetch_blocks: # test fetching channel blocks fetch + @echo "Test fetching block files" docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_fetch.sh" - docker cp fabric-cli:/tmp/block_0.block kafka/channel-artifacts/ - docker cp fabric-cli:/tmp/block_1.block kafka/channel-artifacts/ - docker cp fabric-cli:/tmp/block_2.block kafka/channel-artifacts/ - docker cp fabric-cli:/tmp/block_3.block kafka/channel-artifacts/ - ################## Env setup related, no need to see usually ################ setup: # setup the environment - bash scripts/setup_Docker.sh # Install Docker, Docker-Compose - bash scripts/download_images.sh # Pull required Docker images + bash scripts/setup_env.sh # Installing Docker and Docker-Compose + bash scripts/download_images.sh # Pull required Docker images clean: # clean up containers @echo "Clean all containers and fabric cc images" @@ -103,6 +128,9 @@ clean_env: # clean up environment cli: # enter the cli container docker exec -it fabric-cli bash +orderer: # enter the orderer container + docker exec -it orderer.example.com bash + peer: # enter the peer container docker exec -it peer0.org1.example.com bash @@ -125,24 +153,34 @@ logs_save: # save logs logs_view: # view logs less /tmp/dev_peer.log -gen_solo: # generate solo artifacts - cd solo && bash gen_artifacts.sh +gen_config: # generate config artifacts + if [ "$(HLF_MODE)" = "solo" ]; then \ + bash scripts/gen_config.sh solo; \ + else \ + bash scripts/gen_config.sh kafka; \ + fi -gen_kafka: # generate kafka artifacts - cd kafka && bash gen_artifacts.sh - -configtxlator: # run configtxlator - cd kafka && bash run_configtxlator.sh +test_configtxlator: # Test change config using configtxlator + if [ "$(HLF_MODE)" = "solo" ]; then \ + bash scripts/test_configtxlator.sh solo; \ + else \ + bash scripts/test_configtxlator.sh kafka; \ + fi download: # download required images @echo "Download Docker images" docker pull yeasy/hyperledger-fabric:latest + docker pull yeasy/hyperledger-fabric-peer:latest + docker pull yeasy/hyperledger-fabric-orderer:latest + docker pull yeasy/hyperledger-fabric-ca:latest docker pull yeasy/hyperledger-fabric-kafka:0.10.2.0 # official repo does not provide the latest image currently docker pull hyperledger/fabric-baseos:x86_64-0.4.2 - docker tag yeasy/hyperledger-fabric:latest hyperledger/fabric-ccenv:x86_64-1.1.0 + docker pull hyperledger/fabric-zookeeper:x86_64-1.1.0-preview + docker pull hyperledger/fabric-kafka:x86_64-1.1.0-preview + docker pull hyperledger/fabric-couchdb:x86_64-1.1.0-preview + docker tag yeasy/hyperledger-fabric-peer:latest hyperledger/fabric-ccenv:x86_64-1.1.0 ################## chaincode dev mode ################ chaincode_init: # start chaincode in dev mode and do install/instantiate @echo "Install and instantiate cc example02 on the fabric dev network" docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/init_chaincode_dev.sh" - diff --git a/hyperledger_fabric/latest/README.md b/hyperledger_fabric/latest/README.md index 3ce334cd..4f0c8697 100644 --- a/hyperledger_fabric/latest/README.md +++ b/hyperledger_fabric/latest/README.md @@ -51,14 +51,13 @@ There will be 7 running containers, include 4 peers, 1 cli, 1 ca and 1 orderer. ```bash $ make ps -CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -1dc3f2557bdc hyperledger/fabric-tools "bash -c 'while tr..." 25 minutes ago Up 25 minutes fabric-cli -5e5f37a0ed3c hyperledger/fabric-peer "peer node start" 25 minutes ago Up 25 minutes 7050/tcp, 7054-7059/tcp, 0.0.0.0:8051->7051/tcp, 0.0.0.0:8052->7052/tcp, 0.0.0.0:8053->7053/tcp peer1.org1.example.com -6cce94da6392 hyperledger/fabric-peer "peer node start" 25 minutes ago Up 25 minutes 7050/tcp, 7054-7059/tcp, 0.0.0.0:9051->7051/tcp, 0.0.0.0:9052->7052/tcp, 0.0.0.0:9053->7053/tcp peer0.org2.example.com -e36c5e8d56c5 hyperledger/fabric-peer "peer node start" 25 minutes ago Up 25 minutes 7050/tcp, 7054-7059/tcp, 0.0.0.0:7051-7053->7051-7053/tcp peer0.org1.example.com -1fdd3d2b6527 hyperledger/fabric-orderer "orderer start" 25 minutes ago Up 25 minutes 0.0.0.0:7050->7050/tcp orderer.example.com -8af323340651 hyperledger/fabric-ca "fabric-ca-server ..." 25 minutes ago Up 25 minutes 0.0.0.0:7054->7054/tcp fabric-ca -e41d8bca7fe5 hyperledger/fabric-peer "peer node start" 25 minutes ago Up 25 minutes 7050/tcp, 7054-7059/tcp, 0.0.0.0:10051->7051/tcp, 0.0.0.0:10052->7052/tcp, 0.0.0.0:10053->7053/tcp peer1.org2.example.com +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +f6686986fe18 hyperledger/fabric-tools:x86_64-1.0.4 "bash -c 'cd /tmp;..." 6 seconds ago Up 14 seconds fabric-cli +c7f274bf60bc yeasy/hyperledger-fabric-peer:1.0.4 "peer node start" 6 seconds ago Up 11 seconds 7050/tcp, 7054-7059/tcp, 0.0.0.0:10051->7051/tcp, 0.0.0.0:10052->7052/tcp, 0.0.0.0:10053->7053/tcp peer1.org2.example.com +c6c5f69f2d53 yeasy/hyperledger-fabric-peer:1.0.4 "peer node start" 6 seconds ago Up 12 seconds 7050/tcp, 7054-7059/tcp, 0.0.0.0:8051->7051/tcp, 0.0.0.0:8052->7052/tcp, 0.0.0.0:8053->7053/tcp peer1.org1.example.com +3cad0c519e6f yeasy/hyperledger-fabric-peer:1.0.4 "peer node start" 6 seconds ago Up 13 seconds 7050/tcp, 7054-7059/tcp, 0.0.0.0:7051-7053->7051-7053/tcp peer0.org1.example.com +8b371209f6b8 yeasy/hyperledger-fabric-peer:1.0.4 "peer node start" 6 seconds ago Up 11 seconds 7050/tcp, 7054-7059/tcp, 0.0.0.0:9051->7051/tcp, 0.0.0.0:9052->7052/tcp, 0.0.0.0:9053->7053/tcp peer0.org2.example.com +ba1f00a9c83c hyperledger/fabric-orderer:x86_64-1.0.4 "orderer start" 6 seconds ago Up 14 seconds 0.0.0.0:7050->7050/tcp orderer.example.com ``` ### Initialize Fabric network @@ -82,7 +81,7 @@ You should see result like the following if the initialization is successful. ==========initialize businesschannel========== ============================================== -Channel name : businesschannel +Channel name: businesschannel Creating channel... ... diff --git a/hyperledger_fabric/latest/base-kafka.yaml b/hyperledger_fabric/latest/base-kafka.yaml index eae03a75..0962dd1f 100644 --- a/hyperledger_fabric/latest/base-kafka.yaml +++ b/hyperledger_fabric/latest/base-kafka.yaml @@ -87,7 +87,7 @@ services: - ./kafka/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml - ./kafka/crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml - ./kafka/crypto-config:/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto - - ./kafka/examples:/opt/gopath/src/github.com/hyperledger/fabric/examples + - ./kafka/examples:/opt/gopath/src/examples ## following are peer nodes ## diff --git a/hyperledger_fabric/latest/base-solo.yaml b/hyperledger_fabric/latest/base-solo.yaml index 62084e06..ab15571e 100644 --- a/hyperledger_fabric/latest/base-solo.yaml +++ b/hyperledger_fabric/latest/base-solo.yaml @@ -63,31 +63,6 @@ services: - ./solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/:/var/hyperledger/orderer/tls command: orderer start - cli: # client node - extends: - file: base.yaml - service: cli-base - container_name: fabric-cli - hostname: fabric-cli - tty: true - environment: - #- GOPATH=/opt/gopath - - CORE_PEER_ID=fabric-cli - - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 # default to operate on peer0.org1 - - CORE_PEER_LOCALMSPID=Org1MSP - - CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt - - CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key - - CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt - - CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp - - CORE_PEER_TLS_ENABLED=true # to enable TLS, change to true - volumes: - #- ./scripts:/opt/gopath/src/github.com/hyperledger/fabric/peer/scripts/ - - ./scripts:/tmp/scripts - - ./solo/channel-artifacts:/tmp/channel-artifacts - - ./solo/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml - - ./solo/crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml - - ./solo/crypto-config:/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto - - ./solo/examples:/opt/gopath/src/github.com/hyperledger/fabric/examples ## following are peer nodes ## @@ -178,6 +153,33 @@ services: - 10052:7052 - 10053:7053 + cli: # client node + extends: + file: base.yaml + service: cli-base + container_name: fabric-cli + hostname: fabric-cli + tty: true + environment: + #- GOPATH=/opt/gopath + - CORE_PEER_ID=fabric-cli + - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 # default to operate on peer0.org1 + - CORE_PEER_LOCALMSPID=Org1MSP + - CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt + - CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key + - CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt + - CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp + - CORE_PEER_TLS_ENABLED=true # to enable TLS, change to true + volumes: + #- ./scripts:/opt/gopath/src/github.com/hyperledger/fabric/peer/scripts/ + - ./scripts:/tmp/scripts + - ./solo/channel-artifacts:/tmp/channel-artifacts + - ./solo/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml + - ./solo/crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml + - ./solo/crypto-config:/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto + - ./solo/examples:/opt/gopath/src/examples + #- ./solo/examples:/opt/gopath/src/github.com/hyperledger/fabric/examples + event-listener: extends: file: base.yaml @@ -192,17 +194,11 @@ services: - CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt - CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp volumes: - #- ./solo/examples:/opt/gopath/src/github.com/hyperledger/fabric/examples - - ./solo/crypto-config:/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ - - ./solo/channel-artifacts:/opt/gopath/src/github.com/hyperledger/fabric/peer/channel-artifacts + - ./scripts:/tmp/scripts + - ./solo/channel-artifacts:/tmp/channel-artifacts - ./solo/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml - ./solo/crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml - - ./scripts:/opt/gopath/src/github.com/hyperledger/fabric/peer/scripts/ - depends_on: - - orderer.example.com - - peer0.org1.example.com - - peer1.org1.example.com - - peer0.org2.example.com - - peer1.org2.example.com - #command: bash -c 'block-listener -events-address=peer0.org1.example.com:7053 -events-mspdir=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/ -events-mspid=Org1MSP' - command: bash -c 'while true; do sleep 20170504; done' + - ./solo/crypto-config:/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto + - ./solo/examples:/opt/gopath/src/github.com/hyperledger/fabric/examples + command: bash -c 'while true; do sleep 1; block-listener -events-address=peer0.org1.example.com:7053 -events-mspdir=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/ -events-mspid=Org1MSP; done' + #command: bash -c 'while true; do sleep 20170504; done' diff --git a/hyperledger_fabric/latest/base.yaml b/hyperledger_fabric/latest/base.yaml index 55005436..21c6f980 100644 --- a/hyperledger_fabric/latest/base.yaml +++ b/hyperledger_fabric/latest/base.yaml @@ -8,8 +8,7 @@ version: '2' services: ca-base: - #image: yeasy/hyperledger-fabric-ca:1.0.4 - image: hyperledger/fabric-ca:x86_64-1.0.4 + image: yeasy/hyperledger-fabric-ca:latest restart: always environment: - FABRIC_CA_HOME=/etc/hyperledger/fabric-ca-server @@ -17,8 +16,7 @@ services: #- FABRIC_CA_SERVER_TLS_ENABLED=false orderer-base: - #image: yeasy/hyperledger-fabric-orderer:1.0.4 - image: hyperledger/fabric-orderer:x86_64-1.0.4 + image: yeasy/hyperledger-fabric-orderer:latest restart: always environment: - ORDERER_GENERAL_LOGLEVEL=DEBUG @@ -28,7 +26,8 @@ services: - ORDERER_GENERAL_GENESISFILE=/var/hyperledger/orderer/orderer.genesis.block - ORDERER_GENERAL_LOCALMSPID=OrdererMSP - ORDERER_GENERAL_LOCALMSPDIR=/var/hyperledger/orderer/msp - - ORDERER_GENERAL_LEDGERTYPE=file + #- ORDERER_GENERAL_LEDGERTYPE=file + - ORDERER_GENERAL_LEDGERTYPE=json - ORDERER_GENERAL_BATCHTIMEOUT=1s - ORDERER_GENERAL_MAXMESSAGECOUNT=10 - ORDERER_GENERAL_MAXWINDOWSIZE=1000 @@ -39,19 +38,21 @@ services: - ORDERER_GENERAL_TLS_PRIVATEKEY=/var/hyperledger/orderer/tls/server.key - ORDERER_GENERAL_TLS_CERTIFICATE=/var/hyperledger/orderer/tls/server.crt - ORDERER_GENERAL_TLS_ROOTCAS=[/var/hyperledger/orderer/tls/ca.crt] + volumes: + - $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric expose: - "7050" # + #command: bash -c 'bash /tmp/orderer_build.sh; orderer start' # use this if to debug orderer command: orderer start peer-base: - image: yeasy/hyperledger-fabric-peer:1.0.4 - #image: hyperledger/fabric-peer:x86_64-1.0.4 + image: yeasy/hyperledger-fabric-peer:latest restart: always environment: - CORE_PEER_ADDRESSAUTODETECT=false - CORE_LOGGING_LEVEL=DEBUG - CORE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} - - CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=104_default # uncomment this to use specific network + - CORE_VM_DOCKER_HOSTCONFIG_NETWORKMODE=latest_default # uncomment this to use specific network - CORE_PEER_GOSSIP_USELEADERELECTION=true - CORE_PEER_GOSSIP_ORGLEADER=false # this node is the group leader, default to false - CORE_PEER_PROFILE_ENABLED=false @@ -61,6 +62,8 @@ services: - CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/tls/ca.crt - CORE_CHIANCODE_LOGGING_LEVEL=DEBUG - CORE_CHIANCODE_LOGGING_FORMAT=%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} + volumes: + - $GOPATH/src/github.com/hyperledger/fabric:/go/src/github.com/hyperledger/fabric expose: - "7050" # Rest - "7051" # Grpc @@ -76,11 +79,11 @@ services: - /var/run/docker.sock:/var/run/docker.sock #volumes: # - /var/run/:/host/var/run/ + #command: bash -c 'bash /tmp/peer_build.sh; peer node start' command: peer node start cli-base: - #image: yeasy/hyperledger-fabric:1.0.4 - image: hyperledger/fabric-tools:x86_64-1.0.4 + image: yeasy/hyperledger-fabric:latest restart: always tty: true environment: @@ -89,12 +92,12 @@ 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 - - CHANNEL_NAME:="businesschannel" + - 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' event-listener-base: - image: yeasy/hyperledger-fabric:1.0.4 + image: yeasy/hyperledger-fabric:latest restart: always tty: true environment: @@ -107,14 +110,14 @@ services: couchdb-base: #container_name: couchdb0 - image: hyperledger/fabric-couchdb:x86_64-1.0.4 + image: hyperledger/fabric-couchdb:x86_64-1.1.0-preview restart: always tty: true # Comment/Uncomment the port mapping if you want to hide/expose the CouchDB service, # for example map it to utilize Fauxton User Interface in dev environments. zookeeper-base: - image: hyperledger/fabric-zookeeper:x86_64-1.0.4 + image: hyperledger/fabric-zookeeper:x86_64-1.1.0-preview restart: always tty: true expose: @@ -124,8 +127,8 @@ services: kafka-base: # official repo doesn't have latest tag, however, kafka changes version recently - image: yeasy/hyperledger-fabric-kafka:0.10.2.0 - image: hyperledger/fabric-kafka:x86_64-1.0.4 + #image: yeasy/hyperledger-fabric-kafka:0.10.2.0 + image: hyperledger/fabric-kafka:x86_64-1.1.0-preview restart: always tty: true environment: @@ -134,4 +137,4 @@ services: - KAFKA_UNCLEAN_LEADER_ELECTION_ENABLE=false - KAFKA_LOG_RETENTION_MS=-1 expose: - - '9092' + - '9092' \ No newline at end of file diff --git a/hyperledger_fabric/latest/config_update/add-org.sh b/hyperledger_fabric/latest/config_update/add-org.sh index 4ff49904..48a69715 100644 --- a/hyperledger_fabric/latest/config_update/add-org.sh +++ b/hyperledger_fabric/latest/config_update/add-org.sh @@ -18,10 +18,10 @@ echo "Generate new certificates" configtxgen -profile TwoOrgsOrdererGenesis -outputBlock ./peer/channel-artifacts/orderer_genesis.block echo "Create the configuration tx" -CHANNEL_NAME=newchannel -configtxgen -profile TwoOrgsChannel -outputCreateChannelTx ./peer/channel-artifacts/channel.tx -channelID ${CHANNEL_NAME} +APP_CHANNEL=newchannel +configtxgen -profile TwoOrgsChannel -outputCreateChannelTx ./peer/channel-artifacts/channel.tx -channelID ${APP_CHANNEL} echo "Define the anchor peer for Org1 on the channel" -configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org1MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org1MSP -configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org2MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org2MSP -configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org3MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org3MSP \ No newline at end of file +configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org1MSPanchors.tx -channelID ${APP_CHANNEL} -asOrg Org1MSP +configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org2MSPanchors.tx -channelID ${APP_CHANNEL} -asOrg Org2MSP +configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate ./peer/channel-artifacts/Org3MSPanchors.tx -channelID ${APP_CHANNEL} -asOrg Org3MSP \ No newline at end of file diff --git a/hyperledger_fabric/latest/docker-compose-2orgs-4peers-event.yaml b/hyperledger_fabric/latest/docker-compose-2orgs-4peers-event.yaml index f6c3f3f7..5c4efd0d 100644 --- a/hyperledger_fabric/latest/docker-compose-2orgs-4peers-event.yaml +++ b/hyperledger_fabric/latest/docker-compose-2orgs-4peers-event.yaml @@ -8,84 +8,52 @@ version: '2.0' services: - ca: - image: yeasy/hyperledger-fabric-ca:1.0.4 - container_name: fabric-ca - hostname: ca - # command: /go/src/github.com/hyperledger/fabric-ca/bin/ca server start -ca testdata/ec.pem -ca-key testdata/ec-key.pem -config testdata/testconfig.json - ports: - - "7054:7054" - command: fabric-ca-server start -b admin:adminpw orderer.example.com: # There can be multiple orderers extends: - file: base-solo.yaml + file: base-event.yaml service: orderer.example.com peer0.org1.example.com: extends: - file: base-solo.yaml + file: base-event.yaml service: peer0.org1.example.com + depends_on: + - orderer.example.com peer1.org1.example.com: extends: - file: base-solo.yaml + file: base-event.yaml service: peer1.org1.example.com + depends_on: + - orderer.example.com peer0.org2.example.com: extends: - file: base-solo.yaml + file: base-event.yaml service: peer0.org2.example.com + depends_on: + - orderer.example.com peer1.org2.example.com: extends: - file: base-solo.yaml + file: base-event.yaml service: peer1.org2.example.com + depends_on: + - orderer.example.com cli: extends: - file: base-solo.yaml + file: base-event.yaml service: cli - environment: - - CORE_PEER_TLS_ENABLED=false # event-listener doesn't support TLS event-listener: - container_name: fabric-event-listener - hostname: fabric-event-listener - image: yeasy/hyperledger-fabric:1.0.4 - tty: true - environment: - - CORE_PEER_ID=fabric-event-listener - - CORE_LOGGING_LEVEL=DEBUG - - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 # default to operate on peer0.org1 - - CORE_PEER_LOCALMSPID=Org1MSP - - CORE_PEER_TLS_ENABLED=false # event-listener doesn't support TLS - - CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt - - CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key - - CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt - - CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp - volumes: - #- ./solo/examples:/opt/gopath/src/github.com/hyperledger/fabric/examples - - ./solo/crypto-config:/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ - - ./solo/channel-artifacts:/opt/gopath/src/github.com/hyperledger/fabric/peer/channel-artifacts - - ./solo/configtx.yaml:/etc/hyperledger/fabric/configtx.yaml - - ./solo/crypto-config.yaml:/etc/hyperledger/fabric/crypto-config.yaml - - ./scripts:/opt/gopath/src/github.com/hyperledger/fabric/peer/scripts/ + extends: + file: base-event.yaml + service: event-listener depends_on: - orderer.example.com - peer0.org1.example.com - peer1.org1.example.com - peer0.org2.example.com - peer1.org2.example.com - working_dir: /opt/gopath/src/github.com/hyperledger/fabric/peer - #command: bash -c 'block-listener -events-address=peer0.org1.example.com:7053 -events-mspdir=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/ -events-mspid=Org1MSP' - command: bash -c 'while true; do sleep 20170504; done' - -#networks: -# default: -# external: -# name: hyperledger_fabric -#networks: -# default: -# external: -# name: hyperledger_fabric diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/Org1MSPanchors.tx b/hyperledger_fabric/latest/kafka/channel-artifacts/Org1MSPanchors.tx deleted file mode 100644 index 9947cbbf..00000000 Binary files a/hyperledger_fabric/latest/kafka/channel-artifacts/Org1MSPanchors.tx and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/Org2MSPanchors.tx b/hyperledger_fabric/latest/kafka/channel-artifacts/Org2MSPanchors.tx deleted file mode 100644 index 6e5a13ae..00000000 Binary files a/hyperledger_fabric/latest/kafka/channel-artifacts/Org2MSPanchors.tx and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/block_0.block b/hyperledger_fabric/latest/kafka/channel-artifacts/block_0.block deleted file mode 100644 index e0b16db6..00000000 Binary files a/hyperledger_fabric/latest/kafka/channel-artifacts/block_0.block and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/block_0.block.json b/hyperledger_fabric/latest/kafka/channel-artifacts/block_0.block.json deleted file mode 100644 index 5a80c9a1..00000000 --- a/hyperledger_fabric/latest/kafka/channel-artifacts/block_0.block.json +++ /dev/null @@ -1,774 +0,0 @@ -{ - "data": { - "data": [ - { - "payload": { - "data": { - "config": { - "channel_group": { - "groups": { - "Application": { - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "Org1MSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQUxHa2ZJRThZNFNKdU1Zd2lWWGdST0F3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkFJQTMrZ2R4QW8vRDdhakdkeFdtelFNV05NY3ZGTjhCV1RYNWRLd1o0M1pHa1hxM1p6WWM2YitkS0FVYktLWQpWaUsrSXhNQkorM2RIMEhocEhzVU9lbWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVA1OUNlV3k0dmV4eXdxVjRxZ1EKNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDdFIzMFJJU0V0OWc3YwpHUGt5Zi92V25XVmtabjJIYUxyaldPQzhsRkdIQUFJZ0k0eXNVekZJa2ZkY2MySjNhRkFnc0w1MGVLbkl3MjZVCkR5T2kwaHlkYS84PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTakNDQWZDZ0F3SUJBZ0lSQUxrM1R5cXFSYUlqZGtsdTZWRzVyVnN3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1EQTJNVEUwT0RBeFdoY05NamN4TURBME1URTAKT0RBeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSnpQVk1iZDFaOWVodTRTYU5BeW5vaWE3bGkrUXJjTGxqeWR5VitaSGQ5b3N0VzA4b01VTVF5cgo1OGdsczdYZ2lyVkF6ay9oSTR4ZnVHY2I5aW9sOFFLalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT3VsQnhyZXR0dlYKcXVRUVU5eXFhT2JxcEZtYzE3NnJrcStLekpyTlNoeW9NQW9HQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNGc1BjVQo5VVQyRFNQZGhqU3lTQnF6UUE2ZG1hMk9waEx3K2NZcHBhYmtDQUlnWGJheStiaVlnWThEYUFyT0hCUTRhNllRCm9pWU9NeGRuQWM3SDROUXFkd3c9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ] - }, - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRQjgzYWNLdEtGOHpOSWd4SjVPQSt6akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV3TURZeE1UUTRNREZhRncweU56RXdNRFF4TVRRNE1ERmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFODZNR0tDNWFXSEFob0xMMmxFcDV6Y05IMEN3ZTIvSFIKVUNKQXVhSVM0bVRQN3VsbTFVR1RaYm9MMC9qRmdXN2JGWHphc3V5OUpTTWRRTXFnQlJzVVphTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0Fna0NHUnZRN2N2cnlvClAwWlo3OWhWdFZoTFRkQkY2NHFPTFpoVytzbnh2dWd3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUtiUk5YUE4KcGZReS9xWEc3Zzdxbi8zclpYSko3VGF4U0RKUkt1MDJNVW1qQWlBMWJvdmhUSW1YeWlVbE9lM0RHeGkzejlTRQpLUTZMS0R5M1VjcGFMTC8xVWc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "Org2MSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1YazFMLzZ2V1dRQkZ6eDJqdy9FSlF3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQk5URVNPaW1DaUFZMG9seWtEN1Z1RWN0WTNCb29EN2ZMRS83WUhsc3NLMlhaTEFQekVuODRxRk43VDI0UW5YdQovdFMwYVRLYmxuQmRWNEJWRnROSEZ1cWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUpBaGtiME8zTDY4cUQ5R1dlL1kKVmJWWVMwM1FSZXVLamkyWVZ2cko4YjdvTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDTEZIclZMcUdyUHhDMQovRGlWV3NKMGJSUGNhbVl2dzc5SWFMajVZczlBcEFJZ2R1RnU2TysrVFFYeUNGSGprVFppWVVua3ZSNU8vQVVWCmYyOXRiZzNpajlrPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQU5LZ1Y3dDZmSGVEeTlmOVpqdnBkMk13Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1EQTJNVEUwT0RBeFdoY05NamN4TURBME1URTAKT0RBeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCS0tXQXMwb3ZtMTg0ZXlSbFhWanlmSStrcGtWWUg1d3VERStmM3ZxQ0VWWU1EcUIyYURIN1RpcwpCN1hwZkVtQVRsaStERGQzcnFXKzNFeHdDSkVUQXlLalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJRWp1ZUJocXFmOC8KekowTmNHZWRIVUFTYThSU0pBeWs5UG5hYytXVzQ4SXZNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQmxHdWY0eQprUTZoMDdwdXBuS0Jtd3RvLzlmS3JRMWE2ZlVvOWcwMXRJSi9BaUIrSlJ2ck9oWlJBOElDYUVqN1c4WGRoK3Z4CjBjUERSVThieHE0Q1NHOVc3dz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ] - }, - "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" - }, - "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" - } - }, - "version": "1" - }, - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTHBmNnNKL3o5dGQvVGRSd1A5RjFRakFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEF3TmpFeE5EZ3dNVm9YRFRJM01UQXdOREV4TkRnd01Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVVMRVQ0SGZUa21kRmc5bGNJbFc3SjFZb29hRXRjTVZDdTA1YytJc2hrU2NpZ0tOQ0h1SVMKcFp5dHVNWXpwejZpcmJFUkVENmhrUjZrTTJEd2ZQSTVjNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZzJacUxneU5KMU85Yy96VjcxYkFnU2ZHNzlqR3JLSjhmCnJzY0MyYU03Q3Rrd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2JwZ3pOd0lFd2ZKVVFIRGJBTWNxTUxSQ3B3ZncKRDVDZnNDVHh0eWFBSGdJQ0lDMThGSjZuZDlHY3V2TVh0UElqZ2NHTkI0UkR6MDVndVVDYWlTQWorczZ1Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "OrdererMSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMakNDQWRXZ0F3SUJBZ0lRRVRyM1NIdWg0T0I1eEJEQnNzZ3JIVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEF3TmpFeE5EZ3dNVm9YRFRJM01UQXdOREV4TkRnd01Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJFOEcwbG1Hck10QUlEWnhOWkV5VkIyb3hTZGYKZ2VTTkRTb2ErUTRTTFZ1MzNqMjlVWGc4Rzg4VmR4cXozK0p3cTBvRnc3VkZEcVV2eENqY1FjcWxIOEtqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTm1haTRNalNkVHZYUDgxZTlXd0lFbnh1L1l4cXlpZkg2N0hBdG1qT3dyWk1Bb0cKQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRTg0N2ZMSnBmandRT2Q1b3AvZFMwck5Ca21XenFFMEhtVVY4eHVrYS82ZwpBaUFCNXQrU0trWEtJK3cyWCsvdWtKRHVKbVI3MUpta1Z6NFdOOGtubUovcVJ3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQU5VS0FIRDZjWWE3VnpWbVhmMmNXZVV3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFd01EWXhNVFE0TURGYUZ3MHlOekV3TURReE1UUTRNREZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFUUDQyMEZ1L1puWUhzeVhxZi8KdmpteGhaNUcvbEdIZG5VL3c5NTkvekp2N0Y1SkQ3dThYbnBjL3BsdVZvNFJSaTlCQ2JPblBBZVJMY3RLRms0YQpPRFpzbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDRG5sQkpYdG1WNkZuTncrY1FnSlVCTWRuZGx6Mkw0RGYwTGR1T1IKeFlYamNqQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQUZpV3l0VFgwbGlydGM2ZTRVd3F6V0lJUG9DQ21ScHJBVQpsaTU4OCt4empBSWdSRktRUFlSKytnd3pmZnRBZjliQ2w1aEEwcGl4WE9zaXpYNzhXcGJvM0lBPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ] - }, - "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": 10, - "preferred_max_bytes": 524288 - }, - "version": "0" - }, - "BatchTimeout": { - "mod_policy": "Admins", - "value": { - "timeout": "2s" - }, - "version": "0" - }, - "ChannelRestrictions": { - "mod_policy": "Admins", - "version": "0" - }, - "ConsensusType": { - "mod_policy": "Admins", - "value": { - "type": "kafka" - }, - "version": "0" - }, - "KafkaBrokers": { - "mod_policy": "Admins", - "value": { - "brokers": [ - "kafka0:9092", - "kafka1:9092", - "kafka2:9092", - "kafka3:9092" - ] - }, - "version": "0" - } - }, - "version": "0" - } - }, - "mod_policy": "", - "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" - }, - "Consortium": { - "mod_policy": "", - "value": { - "name": "SampleConsortium" - }, - "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": "1", - "type": 0 - }, - "last_update": { - "payload": { - "data": { - "config_update": { - "channel_id": "businesschannel", - "isolated_data": { - "rscc_seed_data": { - "channel_group": { - "mod_policy": "/Channel/Application/Admins", - "policies": { - "Example": { - "mod_policy": "Example", - "policy": { - "type": 1, - "value": { - "rule": { - "n_out_of": { - "n": 0 - } - }, - "version": 0 - } - }, - "version": "0" - } - }, - "values": { - "QSCC.Example1": { - "mod_policy": "/Channel/Application/Admins", - "value": { - "policy_ref": "/Channel/Application/Admins" - }, - "version": "0" - }, - "QSCC.Example2": { - "mod_policy": "/Channel/Application/Admins", - "value": { - "policy_ref": "Example" - }, - "version": "0" - } - }, - "version": "0" - }, - "sequence": "0", - "type": 1 - } - }, - "read_set": { - "groups": { - "Application": { - "groups": { - "Org1MSP": { - "mod_policy": "", - "version": "0" - }, - "Org2MSP": { - "mod_policy": "", - "version": "0" - } - }, - "mod_policy": "", - "version": "0" - } - }, - "mod_policy": "", - "values": { - "Consortium": { - "mod_policy": "", - "value": { - "name": "SampleConsortium" - }, - "version": "0" - } - }, - "version": "0" - }, - "type": 0, - "write_set": { - "groups": { - "Application": { - "groups": { - "Org1MSP": { - "mod_policy": "", - "version": "0" - }, - "Org2MSP": { - "mod_policy": "", - "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" - } - }, - "version": "1" - } - }, - "mod_policy": "", - "values": { - "Consortium": { - "mod_policy": "", - "value": { - "name": "SampleConsortium" - }, - "version": "0" - } - }, - "version": "0" - } - }, - "signatures": [ - { - "signature": "MEQCIF+/1A0ve9qijUO81fP732Ktm53eNgYKoH/vgiknHlfEAiBzV0rWkE2JQXWnMTCfsLLWxbhirBbz3BkwS76XeemKSA==", - "signature_header": { - "creator": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "nonce": "nkeXfga1WAHVJhI/6cylAMwIw/JZx3z9" - } - } - ] - }, - "header": { - "channel_header": { - "channel_id": "businesschannel", - "epoch": "0", - "timestamp": "2017-10-08T01:54:48.000Z", - "tx_id": "", - "type": 2, - "version": 0 - }, - "signature_header": { - "creator": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "nonce": "RGk+4J2y8YzWSZ8865tvlHVs404lTEfe" - } - } - }, - "signature": "MEUCIQDJWC1OO0y1g6oMY36j64t/pvIaLn8+UwNbUgKLppaORgIgGnIFHwU5ZlKfpaT1VpEbGazn+ZOrZGXljd7MqlnR4nQ=" - } - }, - "header": { - "channel_header": { - "channel_id": "businesschannel", - "epoch": "0", - "timestamp": "2017-10-08T01:54:48.000Z", - "tx_id": "", - "type": 1, - "version": 0 - }, - "signature_header": { - "creator": "CgpPcmRlcmVyTVNQEusFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRERDQ0FiT2dBd0lCQWdJUkFJUjJJQ25pVk9xQW1rL3Y0anJvekZjd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFd01EWXhNVFE0TURGYUZ3MHlOekV3TURReE1UUTRNREZhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFRlcyNmM5RktMOFVqVzAyWXBsSHJSUnVQV1VmQ256REhBWEVqZjdoSUp4Y1cwOE1DCldvNXJUU3o3RmhZN3dpZWhKSjkzY3ZkK0lka3dZTnBjR3dvQmVxTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnMlpxTGd5TkoxTzljL3pWNzFiQWdTZkc3OWpHcgpLSjhmcnNjQzJhTTdDdGt3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUloQU5pNEUwbTJqQWx3ZGtzdlh6MEdFMVdDCnhnTDhObzBvNVdtdk9TTHMzL2pEQWg4cklrRnhxZVJITml1bG1WemxJOU9EZ3RaN2JxQ1hMMTN3RXd5N09KQlAKLS0tLS1FTkQgLS0tLS0K", - "nonce": "CxBu2sbWpdDcbOaWemXn8oUvFW+maWv4" - } - } - }, - "signature": "MEQCIFMH76hDZ3LTrCNcXxFj/6ho39zSsZLd75Jop+iGrTpFAiAvX0Bdqd8zw1ypnmlidwsBWae8OIX/fXbEiHUjYtEjOA==" - } - ] - }, - "header": { - "data_hash": "BeDx5V7M8bqzfae5bpPBVwVvfow/73OSRClKylzKdNA=", - "number": "0" - }, - "metadata": { - "metadata": [ - "", - "", - "", - "" - ] - } -} diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/block_1.block b/hyperledger_fabric/latest/kafka/channel-artifacts/block_1.block deleted file mode 100644 index 6653862b..00000000 Binary files a/hyperledger_fabric/latest/kafka/channel-artifacts/block_1.block and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/block_1.block.json b/hyperledger_fabric/latest/kafka/channel-artifacts/block_1.block.json deleted file mode 100644 index 7db883c8..00000000 --- a/hyperledger_fabric/latest/kafka/channel-artifacts/block_1.block.json +++ /dev/null @@ -1,735 +0,0 @@ -{ - "data": { - "data": [ - { - "payload": { - "data": { - "config": { - "channel_group": { - "groups": { - "Application": { - "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": { - "AnchorPeers": { - "mod_policy": "Admins", - "value": { - "anchor_peers": [ - { - "host": "peer0.org1.example.com", - "port": 7051 - } - ] - }, - "version": "0" - }, - "MSP": { - "mod_policy": "Admins", - "value": { - "config": { - "admins": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "Org1MSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQUxHa2ZJRThZNFNKdU1Zd2lWWGdST0F3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkFJQTMrZ2R4QW8vRDdhakdkeFdtelFNV05NY3ZGTjhCV1RYNWRLd1o0M1pHa1hxM1p6WWM2YitkS0FVYktLWQpWaUsrSXhNQkorM2RIMEhocEhzVU9lbWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVA1OUNlV3k0dmV4eXdxVjRxZ1EKNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDdFIzMFJJU0V0OWc3YwpHUGt5Zi92V25XVmtabjJIYUxyaldPQzhsRkdIQUFJZ0k0eXNVekZJa2ZkY2MySjNhRkFnc0w1MGVLbkl3MjZVCkR5T2kwaHlkYS84PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTakNDQWZDZ0F3SUJBZ0lSQUxrM1R5cXFSYUlqZGtsdTZWRzVyVnN3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1EQTJNVEUwT0RBeFdoY05NamN4TURBME1URTAKT0RBeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSnpQVk1iZDFaOWVodTRTYU5BeW5vaWE3bGkrUXJjTGxqeWR5VitaSGQ5b3N0VzA4b01VTVF5cgo1OGdsczdYZ2lyVkF6ay9oSTR4ZnVHY2I5aW9sOFFLalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT3VsQnhyZXR0dlYKcXVRUVU5eXFhT2JxcEZtYzE3NnJrcStLekpyTlNoeW9NQW9HQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNGc1BjVQo5VVQyRFNQZGhqU3lTQnF6UUE2ZG1hMk9waEx3K2NZcHBhYmtDQUlnWGJheStiaVlnWThEYUFyT0hCUTRhNllRCm9pWU9NeGRuQWM3SDROUXFkd3c9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ] - }, - "type": 0 - }, - "version": "0" - } - }, - "version": "1" - }, - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRQjgzYWNLdEtGOHpOSWd4SjVPQSt6akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV3TURZeE1UUTRNREZhRncweU56RXdNRFF4TVRRNE1ERmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFODZNR0tDNWFXSEFob0xMMmxFcDV6Y05IMEN3ZTIvSFIKVUNKQXVhSVM0bVRQN3VsbTFVR1RaYm9MMC9qRmdXN2JGWHphc3V5OUpTTWRRTXFnQlJzVVphTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0Fna0NHUnZRN2N2cnlvClAwWlo3OWhWdFZoTFRkQkY2NHFPTFpoVytzbnh2dWd3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUtiUk5YUE4KcGZReS9xWEc3Zzdxbi8zclpYSko3VGF4U0RKUkt1MDJNVW1qQWlBMWJvdmhUSW1YeWlVbE9lM0RHeGkzejlTRQpLUTZMS0R5M1VjcGFMTC8xVWc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "Org2MSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1YazFMLzZ2V1dRQkZ6eDJqdy9FSlF3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQk5URVNPaW1DaUFZMG9seWtEN1Z1RWN0WTNCb29EN2ZMRS83WUhsc3NLMlhaTEFQekVuODRxRk43VDI0UW5YdQovdFMwYVRLYmxuQmRWNEJWRnROSEZ1cWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUpBaGtiME8zTDY4cUQ5R1dlL1kKVmJWWVMwM1FSZXVLamkyWVZ2cko4YjdvTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDTEZIclZMcUdyUHhDMQovRGlWV3NKMGJSUGNhbVl2dzc5SWFMajVZczlBcEFJZ2R1RnU2TysrVFFYeUNGSGprVFppWVVua3ZSNU8vQVVWCmYyOXRiZzNpajlrPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQU5LZ1Y3dDZmSGVEeTlmOVpqdnBkMk13Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1EQTJNVEUwT0RBeFdoY05NamN4TURBME1URTAKT0RBeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCS0tXQXMwb3ZtMTg0ZXlSbFhWanlmSStrcGtWWUg1d3VERStmM3ZxQ0VWWU1EcUIyYURIN1RpcwpCN1hwZkVtQVRsaStERGQzcnFXKzNFeHdDSkVUQXlLalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJRWp1ZUJocXFmOC8KekowTmNHZWRIVUFTYThSU0pBeWs5UG5hYytXVzQ4SXZNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQmxHdWY0eQprUTZoMDdwdXBuS0Jtd3RvLzlmS3JRMWE2ZlVvOWcwMXRJSi9BaUIrSlJ2ck9oWlJBOElDYUVqN1c4WGRoK3Z4CjBjUERSVThieHE0Q1NHOVc3dz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ] - }, - "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" - }, - "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" - } - }, - "version": "1" - }, - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTHBmNnNKL3o5dGQvVGRSd1A5RjFRakFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEF3TmpFeE5EZ3dNVm9YRFRJM01UQXdOREV4TkRnd01Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVVMRVQ0SGZUa21kRmc5bGNJbFc3SjFZb29hRXRjTVZDdTA1YytJc2hrU2NpZ0tOQ0h1SVMKcFp5dHVNWXpwejZpcmJFUkVENmhrUjZrTTJEd2ZQSTVjNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZzJacUxneU5KMU85Yy96VjcxYkFnU2ZHNzlqR3JLSjhmCnJzY0MyYU03Q3Rrd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2JwZ3pOd0lFd2ZKVVFIRGJBTWNxTUxSQ3B3ZncKRDVDZnNDVHh0eWFBSGdJQ0lDMThGSjZuZDlHY3V2TVh0UElqZ2NHTkI0UkR6MDVndVVDYWlTQWorczZ1Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "OrdererMSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMakNDQWRXZ0F3SUJBZ0lRRVRyM1NIdWg0T0I1eEJEQnNzZ3JIVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEF3TmpFeE5EZ3dNVm9YRFRJM01UQXdOREV4TkRnd01Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJFOEcwbG1Hck10QUlEWnhOWkV5VkIyb3hTZGYKZ2VTTkRTb2ErUTRTTFZ1MzNqMjlVWGc4Rzg4VmR4cXozK0p3cTBvRnc3VkZEcVV2eENqY1FjcWxIOEtqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTm1haTRNalNkVHZYUDgxZTlXd0lFbnh1L1l4cXlpZkg2N0hBdG1qT3dyWk1Bb0cKQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRTg0N2ZMSnBmandRT2Q1b3AvZFMwck5Ca21XenFFMEhtVVY4eHVrYS82ZwpBaUFCNXQrU0trWEtJK3cyWCsvdWtKRHVKbVI3MUpta1Z6NFdOOGtubUovcVJ3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQU5VS0FIRDZjWWE3VnpWbVhmMmNXZVV3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFd01EWXhNVFE0TURGYUZ3MHlOekV3TURReE1UUTRNREZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFUUDQyMEZ1L1puWUhzeVhxZi8KdmpteGhaNUcvbEdIZG5VL3c5NTkvekp2N0Y1SkQ3dThYbnBjL3BsdVZvNFJSaTlCQ2JPblBBZVJMY3RLRms0YQpPRFpzbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDRG5sQkpYdG1WNkZuTncrY1FnSlVCTWRuZGx6Mkw0RGYwTGR1T1IKeFlYamNqQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQUZpV3l0VFgwbGlydGM2ZTRVd3F6V0lJUG9DQ21ScHJBVQpsaTU4OCt4empBSWdSRktRUFlSKytnd3pmZnRBZjliQ2w1aEEwcGl4WE9zaXpYNzhXcGJvM0lBPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ] - }, - "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": 10, - "preferred_max_bytes": 524288 - }, - "version": "0" - }, - "BatchTimeout": { - "mod_policy": "Admins", - "value": { - "timeout": "2s" - }, - "version": "0" - }, - "ChannelRestrictions": { - "mod_policy": "Admins", - "version": "0" - }, - "ConsensusType": { - "mod_policy": "Admins", - "value": { - "type": "kafka" - }, - "version": "0" - }, - "KafkaBrokers": { - "mod_policy": "Admins", - "value": { - "brokers": [ - "kafka0:9092", - "kafka1:9092", - "kafka2:9092", - "kafka3:9092" - ] - }, - "version": "0" - } - }, - "version": "0" - } - }, - "mod_policy": "", - "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" - }, - "Consortium": { - "mod_policy": "", - "value": { - "name": "SampleConsortium" - }, - "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": "2", - "type": 0 - }, - "last_update": { - "payload": { - "data": { - "config_update": { - "channel_id": "businesschannel", - "read_set": { - "groups": { - "Application": { - "groups": { - "Org1MSP": { - "mod_policy": "", - "policies": { - "Admins": { - "mod_policy": "", - "version": "0" - }, - "Readers": { - "mod_policy": "", - "version": "0" - }, - "Writers": { - "mod_policy": "", - "version": "0" - } - }, - "values": { - "MSP": { - "mod_policy": "", - "version": "0" - } - }, - "version": "0" - } - }, - "mod_policy": "Admins", - "version": "1" - } - }, - "mod_policy": "", - "version": "0" - }, - "type": 0, - "write_set": { - "groups": { - "Application": { - "groups": { - "Org1MSP": { - "mod_policy": "Admins", - "policies": { - "Admins": { - "mod_policy": "", - "version": "0" - }, - "Readers": { - "mod_policy": "", - "version": "0" - }, - "Writers": { - "mod_policy": "", - "version": "0" - } - }, - "values": { - "AnchorPeers": { - "mod_policy": "Admins", - "value": { - "anchor_peers": [ - { - "host": "peer0.org1.example.com", - "port": 7051 - } - ] - }, - "version": "0" - }, - "MSP": { - "mod_policy": "", - "version": "0" - } - }, - "version": "1" - } - }, - "mod_policy": "Admins", - "version": "1" - } - }, - "mod_policy": "", - "version": "0" - } - }, - "signatures": [ - { - "signature": "MEQCIAFK8WFmCi0NYoUKyspI9cRwXM74FvJ2HQUWAZVYcfdGAiA8Z22b8My7wPnqlhVGDdP7FSAp2XNRqQW/OfTNd63RoQ==", - "signature_header": { - "creator": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "nonce": "UNrfw2sb03Iyw6I6CJhDLsmzccYE1h9t" - } - } - ] - }, - "header": { - "channel_header": { - "channel_id": "businesschannel", - "epoch": "0", - "timestamp": "2017-10-08T01:54:54.000Z", - "tx_id": "", - "type": 2, - "version": 0 - }, - "signature_header": { - "creator": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "nonce": "6PCZ0DbRAr1K+NfhlFdyU7pkN7/o6g/+" - } - } - }, - "signature": "MEUCIQD6E+qEjES81qmEkFVHU3kMCctEMQB3WPP+hm/yV+jTHgIgJumv51fHr4DD+L6Q0CRNtvBLSHPPMBKnLi6fCwvqB4g=" - } - }, - "header": { - "channel_header": { - "channel_id": "businesschannel", - "epoch": "0", - "timestamp": "2017-10-08T01:54:54.000Z", - "tx_id": "", - "type": 1, - "version": 0 - }, - "signature_header": { - "creator": "CgpPcmRlcmVyTVNQEusFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRERDQ0FiT2dBd0lCQWdJUkFJUjJJQ25pVk9xQW1rL3Y0anJvekZjd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFd01EWXhNVFE0TURGYUZ3MHlOekV3TURReE1UUTRNREZhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFRlcyNmM5RktMOFVqVzAyWXBsSHJSUnVQV1VmQ256REhBWEVqZjdoSUp4Y1cwOE1DCldvNXJUU3o3RmhZN3dpZWhKSjkzY3ZkK0lka3dZTnBjR3dvQmVxTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnMlpxTGd5TkoxTzljL3pWNzFiQWdTZkc3OWpHcgpLSjhmcnNjQzJhTTdDdGt3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUloQU5pNEUwbTJqQWx3ZGtzdlh6MEdFMVdDCnhnTDhObzBvNVdtdk9TTHMzL2pEQWg4cklrRnhxZVJITml1bG1WemxJOU9EZ3RaN2JxQ1hMMTN3RXd5N09KQlAKLS0tLS1FTkQgLS0tLS0K", - "nonce": "zKZcZNn2oAV5mCK5X1Z8wDlw+MKotpJy" - } - } - }, - "signature": "MEUCIQCX5h0eXNV3XGHReDh90Nl9tarzs2UG7tR1U239bvz/RAIgNFdyFL87KhcW+CspXFAZdVa6hkVacRS6PBWf464EuXc=" - } - ] - }, - "header": { - "data_hash": "K4cOvg4fZYU7/NOW618SDbBwwMKco80F/MlU0HAJqho=", - "number": "1", - "previous_hash": "JvxyivCjFz5t3msYCeCDGu81OuwNCvAttyixdZdurKU=" - }, - "metadata": { - "metadata": [ - "EuIGCpcGCvoFCgpPcmRlcmVyTVNQEusFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRERDQ0FiT2dBd0lCQWdJUkFJUjJJQ25pVk9xQW1rL3Y0anJvekZjd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFd01EWXhNVFE0TURGYUZ3MHlOekV3TURReE1UUTRNREZhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFRlcyNmM5RktMOFVqVzAyWXBsSHJSUnVQV1VmQ256REhBWEVqZjdoSUp4Y1cwOE1DCldvNXJUU3o3RmhZN3dpZWhKSjkzY3ZkK0lka3dZTnBjR3dvQmVxTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnMlpxTGd5TkoxTzljL3pWNzFiQWdTZkc3OWpHcgpLSjhmcnNjQzJhTTdDdGt3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUloQU5pNEUwbTJqQWx3ZGtzdlh6MEdFMVdDCnhnTDhObzBvNVdtdk9TTHMzL2pEQWg4cklrRnhxZVJITml1bG1WemxJOU9EZ3RaN2JxQ1hMMTN3RXd5N09KQlAKLS0tLS1FTkQgLS0tLS0KEhgpaFc8bKjfPLq1r3XmXco8C7Md8JlsvWcSRjBEAiAyGjWLEbdKihv+Pl4oVSFF5ZVbvA89niDhmIH5NdwrsAIgAk/KZV1Sr/GOGcSsIKtpX4U/8Po1LwwMcSTQwOqePCg=", - "CgIIARLjBgqXBgr6BQoKT3JkZXJlck1TUBLrBS0tLS0tQkVHSU4gLS0tLS0KTUlJQ0REQ0NBYk9nQXdJQkFnSVJBSVIySUNuaVZPcUFtay92NGpyb3pGY3dDZ1lJS29aSXpqMEVBd0l3YVRFTApNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHCmNtRnVZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUmN3RlFZRFZRUURFdzVqWVM1bGVHRnQKY0d4bExtTnZiVEFlRncweE56RXdNRFl4TVRRNE1ERmFGdzB5TnpFd01EUXhNVFE0TURGYU1GZ3hDekFKQmdOVgpCQVlUQWxWVE1STXdFUVlEVlFRSUV3cERZV3hwWm05eWJtbGhNUll3RkFZRFZRUUhFdzFUWVc0Z1JuSmhibU5wCmMyTnZNUnd3R2dZRFZRUURFeE52Y21SbGNtVnlMbVY0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUkKS29aSXpqMERBUWNEUWdBRUZXMjZjOUZLTDhValcwMllwbEhyUlJ1UFdVZkNuekRIQVhFamY3aElKeGNXMDhNQwpXbzVyVFN6N0ZoWTd3aWVoSko5M2N2ZCtJZGt3WU5wY0d3b0JlcU5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBCk1Bd0dBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZzJacUxneU5KMU85Yy96VjcxYkFnU2ZHNzlqR3IKS0o4ZnJzY0MyYU03Q3Rrd0NnWUlLb1pJemowRUF3SURSd0F3UkFJaEFOaTRFMG0yakFsd2Rrc3ZYejBHRTFXQwp4Z0w4Tm8wbzVXbXZPU0xzMy9qREFoOHJJa0Z4cWVSSE5pdWxtVnpsSTlPRGd0WjdicUNYTDEzd0V3eTdPSkJQCi0tLS0tRU5EIC0tLS0tChIY5SmEA/zpDr/BvGF2F/9Hel66gy0v0lgGEkcwRQIhANSzC4LMi86o7vm8ITih7KgoLhEC0yF1F4BZdq/DUNUrAiBkiRXL83KHZcpMLZ2Iaks1dNLQwNBmU/JK+mCsifTvbg==", - "", - "CgIIAQ==" - ] - } -} diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/block_2.block b/hyperledger_fabric/latest/kafka/channel-artifacts/block_2.block deleted file mode 100644 index 14871473..00000000 Binary files a/hyperledger_fabric/latest/kafka/channel-artifacts/block_2.block and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/block_2.block.json b/hyperledger_fabric/latest/kafka/channel-artifacts/block_2.block.json deleted file mode 100644 index e44249da..00000000 --- a/hyperledger_fabric/latest/kafka/channel-artifacts/block_2.block.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "data": { - "data": [ - { - "payload": { - "data": { - "actions": [ - { - "header": { - "creator": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "nonce": "HsibX7H9Ap4UkDrSPTGUACjNAatjKOiD" - }, - "payload": { - "action": { - "endorsements": [ - { - "endorser": "CgdPcmcxTVNQEpIGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRS21yZVhUS0w4cE5qSHRQVGFjM1lvREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV3TURZeE1UUTRNREZhRncweU56RXdNRFF4TVRRNE1ERmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNQzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFV1VCWi96aDU5cDBvdHZaNjc3cUtkN2VHeXlWMXV1WHgKK1F0RUEyRzRPRzZrdkYxTUFVQzNoeG5DeWFQU1ZlSGtOd0xDdkpCRDdWWCtESEJYYU9IcDNxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnL24wSjViTGk5N0hMCkNwWGlxQkRpaVEyMWI3azlzeWxhTUExMDMzYXA4M3N3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUloQUlWQnU5L0UKUFMwT2p0bW9iVWZlSzJrMys1eGM5OFR2SFJRWldQQVd6TDNaQWg5K2hROWJHM2MzWHAyV2FIcDZHZ0VONUhmZApxOUFVQUJoaEEzRWVOaUQ5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", - "signature": "MEUCIQCAD3KRBWcd7tMGCFqaZV29B8WIi+/CoMt63C3wG0PaTAIgZ+jXkufvKF692KMtkv4yoftJcpnMDALe4yIlGImLiR4=" - } - ], - "proposal_response_payload": { - "extension": { - "chaincode_id": { - "name": "lscc", - "path": "", - "version": "1.1.0" - }, - "response": { - "message": "", - "payload": "CgRteWNjEgMxLjAaBGVzY2MiBHZzY2MqKBIMEgoIARICCAASAggBGgsSCQoHT3JnMU1TUBoLEgkKB09yZzJNU1AyRAogU+90p48Zjixh8K7Tqot2+IdL2ieAmrdccayOYxVsDUMSIAcfFCkeFSuyrojn/fnlp3TTE2FroxVKhPag1FoXX2MmOiD2BYMh1GYmd40M+bSxS9XKC1e7c2BfO8cUy7GmSupcp0IsEgwSCggBEgIIABICCAEaDRILCgdPcmcxTVNQEAEaDRILCgdPcmcyTVNQEAE=", - "status": 200 - }, - "results": "EvQBCgRsc2NjEusBCgYKBG15Y2Ma4AEKBG15Y2Ma1wEKBG15Y2MSAzEuMBoEZXNjYyIEdnNjYyooEgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUDJECiBT73SnjxmOLGHwrtOqi3b4h0vaJ4Cat1xxrI5jFWwNQxIgBx8UKR4VK7KuiOf9+eWndNMTYWujFUqE9qDUWhdfYyY6IPYFgyHUZiZ3jQz5tLFL1coLV7tzYF87xxTLsaZK6lynQiwSDBIKCAESAggAEgIIARoNEgsKB09yZzFNU1AQARoNEgsKB09yZzJNU1AQARIcCgRteWNjEhQaCAoBYRoDMTAwGggKAWIaAzIwMA==" - }, - "proposal_hash": "Qa4wTTQgg4DIu5PZzQvLhNGrKhCrsdb1Xp1zrC+ogo4=" - } - }, - "chaincode_proposal_payload": { - "input": { - "chaincode_spec": { - "chaincode_id": { - "name": "lscc", - "path": "", - "version": "" - }, - "input": { - "args": [ - "ZGVwbG95", - "YnVzaW5lc3NjaGFubmVs", - "CicIARILEgRteWNjGgMxLjAaFgoEaW5pdAoBYQoDMTAwCgFiCgMyMDA=", - "EgwSCggBEgIIABICCAEaCxIJCgdPcmcxTVNQGgsSCQoHT3JnMk1TUA==", - "ZXNjYw==", - "dnNjYw==" - ] - }, - "timeout": 0, - "type": "GOLANG" - }, - "id_generation_alg": "" - } - } - } - } - ] - }, - "header": { - "channel_header": { - "channel_id": "businesschannel", - "epoch": "0", - "extension": "EgYSBGxzY2M=", - "timestamp": "2017-10-08T01:55:05.018301554Z", - "tx_id": "a58218886d8bd744d2466f1e27cdf515f828397310e24959f200191251f081c9", - "type": 3, - "version": 0 - }, - "signature_header": { - "creator": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "nonce": "HsibX7H9Ap4UkDrSPTGUACjNAatjKOiD" - } - } - }, - "signature": "MEUCIQDgWQ8ZGRLIc4bDCgPWVZiZT1dF+VWkRB+OeObLDdKbzwIgFa4c4cRf2zOp0gOiEPcH+djXqmFCQ183xOKcwSu725U=" - } - ] - }, - "header": { - "data_hash": "cuwVOPSyrDjVWV0TAzTP3yYKL18aoOJS+ubex3x8V/s=", - "number": "2", - "previous_hash": "DG3W9xEdVk6C+VMEtOpIfAxFzvkNOKKZw9wfm22/iJw=" - }, - "metadata": { - "metadata": [ - "EuIGCpcGCvoFCgpPcmRlcmVyTVNQEusFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRERDQ0FiT2dBd0lCQWdJUkFJUjJJQ25pVk9xQW1rL3Y0anJvekZjd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFd01EWXhNVFE0TURGYUZ3MHlOekV3TURReE1UUTRNREZhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFRlcyNmM5RktMOFVqVzAyWXBsSHJSUnVQV1VmQ256REhBWEVqZjdoSUp4Y1cwOE1DCldvNXJUU3o3RmhZN3dpZWhKSjkzY3ZkK0lka3dZTnBjR3dvQmVxTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnMlpxTGd5TkoxTzljL3pWNzFiQWdTZkc3OWpHcgpLSjhmcnNjQzJhTTdDdGt3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUloQU5pNEUwbTJqQWx3ZGtzdlh6MEdFMVdDCnhnTDhObzBvNVdtdk9TTHMzL2pEQWg4cklrRnhxZVJITml1bG1WemxJOU9EZ3RaN2JxQ1hMMTN3RXd5N09KQlAKLS0tLS1FTkQgLS0tLS0KEhghb36GDEbCSDVu6pYMTWia3ekL/TB1eVISRjBEAiBEE1hOF1/uT8bj3t+IavMoZjvNdfLurIfECFX1DhQjlQIgDeEmId1ipETmWxOJFTSugBZdRhKt10QeV/Koz9HXc1s=", - "CgIIARLjBgqXBgr6BQoKT3JkZXJlck1TUBLrBS0tLS0tQkVHSU4gLS0tLS0KTUlJQ0REQ0NBYk9nQXdJQkFnSVJBSVIySUNuaVZPcUFtay92NGpyb3pGY3dDZ1lJS29aSXpqMEVBd0l3YVRFTApNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHCmNtRnVZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUmN3RlFZRFZRUURFdzVqWVM1bGVHRnQKY0d4bExtTnZiVEFlRncweE56RXdNRFl4TVRRNE1ERmFGdzB5TnpFd01EUXhNVFE0TURGYU1GZ3hDekFKQmdOVgpCQVlUQWxWVE1STXdFUVlEVlFRSUV3cERZV3hwWm05eWJtbGhNUll3RkFZRFZRUUhFdzFUWVc0Z1JuSmhibU5wCmMyTnZNUnd3R2dZRFZRUURFeE52Y21SbGNtVnlMbVY0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUkKS29aSXpqMERBUWNEUWdBRUZXMjZjOUZLTDhValcwMllwbEhyUlJ1UFdVZkNuekRIQVhFamY3aElKeGNXMDhNQwpXbzVyVFN6N0ZoWTd3aWVoSko5M2N2ZCtJZGt3WU5wY0d3b0JlcU5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBCk1Bd0dBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZzJacUxneU5KMU85Yy96VjcxYkFnU2ZHNzlqR3IKS0o4ZnJzY0MyYU03Q3Rrd0NnWUlLb1pJemowRUF3SURSd0F3UkFJaEFOaTRFMG0yakFsd2Rrc3ZYejBHRTFXQwp4Z0w4Tm8wbzVXbXZPU0xzMy9qREFoOHJJa0Z4cWVSSE5pdWxtVnpsSTlPRGd0WjdicUNYTDEzd0V3eTdPSkJQCi0tLS0tRU5EIC0tLS0tChIYFyMAeWvgr7I3XP/qWIwxOLLGtzwR1mW2EkcwRQIhAM+BJ+EazjsecqsNqsrggz5Wyqen51IpfsT37f/iPUI0AiAgo2NCfollJhv+aSdJLrX330Nb/a8ac/MkuRF1RTfATQ==", - "", - "CgIIAw==" - ] - } -} diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/block_3.block b/hyperledger_fabric/latest/kafka/channel-artifacts/block_3.block deleted file mode 100644 index b9a72041..00000000 Binary files a/hyperledger_fabric/latest/kafka/channel-artifacts/block_3.block and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/block_3.block.json b/hyperledger_fabric/latest/kafka/channel-artifacts/block_3.block.json deleted file mode 100644 index 77aac089..00000000 --- a/hyperledger_fabric/latest/kafka/channel-artifacts/block_3.block.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "data": { - "data": [ - { - "payload": { - "data": { - "actions": [ - { - "header": { - "creator": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "nonce": "x0JVEGFK4xL4ocxJrXy8or8QDJLuVp2n" - }, - "payload": { - "action": { - "endorsements": [ - { - "endorser": "CgdPcmcxTVNQEpIGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHRENDQWIrZ0F3SUJBZ0lRS21yZVhUS0w4cE5qSHRQVGFjM1lvREFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NUzVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV3TURZeE1UUTRNREZhRncweU56RXdNRFF4TVRRNE1ERmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFERXhad1pXVnlNQzV2Y21jeExtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFV1VCWi96aDU5cDBvdHZaNjc3cUtkN2VHeXlWMXV1WHgKK1F0RUEyRzRPRzZrdkYxTUFVQzNoeG5DeWFQU1ZlSGtOd0xDdkpCRDdWWCtESEJYYU9IcDNxTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnL24wSjViTGk5N0hMCkNwWGlxQkRpaVEyMWI3azlzeWxhTUExMDMzYXA4M3N3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUloQUlWQnU5L0UKUFMwT2p0bW9iVWZlSzJrMys1eGM5OFR2SFJRWldQQVd6TDNaQWg5K2hROWJHM2MzWHAyV2FIcDZHZ0VONUhmZApxOUFVQUJoaEEzRWVOaUQ5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K", - "signature": "MEQCIGvXzGGO4n8RCFFgyLLF9eg6YAR41+09EJVX+TeX6K1xAiBTsaO5tnhzO//Olt++OxNO3GQIReAMXbmN6B+Brp5RBA==" - } - ], - "proposal_response_payload": { - "extension": { - "chaincode_id": { - "name": "mycc", - "path": "", - "version": "1.0" - }, - "response": { - "message": "", - "status": 200 - }, - "results": "EhQKBGxzY2MSDAoKCgRteWNjEgIIAhItCgRteWNjEiUKBwoBYRICCAIKBwoBYhICCAIaBwoBYRoCOTAaCAoBYhoDMjEw" - }, - "proposal_hash": "NVneekb/4UqU6JON8x0KWW90uTS99HqbsbEDOriwscw=" - } - }, - "chaincode_proposal_payload": { - "input": { - "chaincode_spec": { - "chaincode_id": { - "name": "mycc", - "path": "", - "version": "" - }, - "input": { - "args": [ - "aW52b2tl", - "YQ==", - "Yg==", - "MTA=" - ] - }, - "timeout": 0, - "type": "GOLANG" - }, - "id_generation_alg": "" - } - } - } - } - ] - }, - "header": { - "channel_header": { - "channel_id": "businesschannel", - "epoch": "0", - "extension": "EgYSBG15Y2M=", - "timestamp": "2017-10-08T01:55:41.048515327Z", - "tx_id": "9ceedae8879db93700d143229786fd2190a6ffef2eca718a85f787bae2e8aedb", - "type": 3, - "version": 0 - }, - "signature_header": { - "creator": "CgdPcmcxTVNQEpYGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", - "nonce": "x0JVEGFK4xL4ocxJrXy8or8QDJLuVp2n" - } - } - }, - "signature": "MEUCIQDydVhU4sZiJQiuVSmvS5bhUTx3+4Pf4z4N71f437hc2QIgGm61a4oQcirPFQOTr8RT9P541rdmGVySqKnYUW8KMvc=" - } - ] - }, - "header": { - "data_hash": "pVsIhHG/uE9MySGtEy/C1AE8DWYKz3k9JnqiMKpV8TE=", - "number": "3", - "previous_hash": "CPQlwmqyTWIZMJxj24/1a8Ef4Kg2tbwFBeJp13sc5k0=" - }, - "metadata": { - "metadata": [ - "EuIGCpcGCvoFCgpPcmRlcmVyTVNQEusFLS0tLS1CRUdJTiAtLS0tLQpNSUlDRERDQ0FiT2dBd0lCQWdJUkFJUjJJQ25pVk9xQW1rL3Y0anJvekZjd0NnWUlLb1pJemowRUF3SXdhVEVMCk1Ba0dBMVVFQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkcKY21GdVkybHpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdApjR3hsTG1OdmJUQWVGdzB4TnpFd01EWXhNVFE0TURGYUZ3MHlOekV3TURReE1UUTRNREZhTUZneEN6QUpCZ05WCkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaGJtTnAKYzJOdk1Sd3dHZ1lEVlFRREV4TnZjbVJsY21WeUxtVjRZVzF3YkdVdVkyOXRNRmt3RXdZSEtvWkl6ajBDQVFZSQpLb1pJemowREFRY0RRZ0FFRlcyNmM5RktMOFVqVzAyWXBsSHJSUnVQV1VmQ256REhBWEVqZjdoSUp4Y1cwOE1DCldvNXJUU3o3RmhZN3dpZWhKSjkzY3ZkK0lka3dZTnBjR3dvQmVxTk5NRXN3RGdZRFZSMFBBUUgvQkFRREFnZUEKTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0FnMlpxTGd5TkoxTzljL3pWNzFiQWdTZkc3OWpHcgpLSjhmcnNjQzJhTTdDdGt3Q2dZSUtvWkl6ajBFQXdJRFJ3QXdSQUloQU5pNEUwbTJqQWx3ZGtzdlh6MEdFMVdDCnhnTDhObzBvNVdtdk9TTHMzL2pEQWg4cklrRnhxZVJITml1bG1WemxJOU9EZ3RaN2JxQ1hMMTN3RXd5N09KQlAKLS0tLS1FTkQgLS0tLS0KEhh014qetDcUCpg3u4ul+kbO6teKIj3yJbQSRjBEAiBcTM/eO3fX968BL379TXZp12s92+dXJFfkFrzhOYB8RgIgJPyRuIqrgQQc612cDEDymlB+39Opia6ThOwIKXFqtMg=", - "CgIIARLiBgqXBgr6BQoKT3JkZXJlck1TUBLrBS0tLS0tQkVHSU4gLS0tLS0KTUlJQ0REQ0NBYk9nQXdJQkFnSVJBSVIySUNuaVZPcUFtay92NGpyb3pGY3dDZ1lJS29aSXpqMEVBd0l3YVRFTApNQWtHQTFVRUJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHCmNtRnVZMmx6WTI4eEZEQVNCZ05WQkFvVEMyVjRZVzF3YkdVdVkyOXRNUmN3RlFZRFZRUURFdzVqWVM1bGVHRnQKY0d4bExtTnZiVEFlRncweE56RXdNRFl4TVRRNE1ERmFGdzB5TnpFd01EUXhNVFE0TURGYU1GZ3hDekFKQmdOVgpCQVlUQWxWVE1STXdFUVlEVlFRSUV3cERZV3hwWm05eWJtbGhNUll3RkFZRFZRUUhFdzFUWVc0Z1JuSmhibU5wCmMyTnZNUnd3R2dZRFZRUURFeE52Y21SbGNtVnlMbVY0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUkKS29aSXpqMERBUWNEUWdBRUZXMjZjOUZLTDhValcwMllwbEhyUlJ1UFdVZkNuekRIQVhFamY3aElKeGNXMDhNQwpXbzVyVFN6N0ZoWTd3aWVoSko5M2N2ZCtJZGt3WU5wY0d3b0JlcU5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBCk1Bd0dBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZzJacUxneU5KMU85Yy96VjcxYkFnU2ZHNzlqR3IKS0o4ZnJzY0MyYU03Q3Rrd0NnWUlLb1pJemowRUF3SURSd0F3UkFJaEFOaTRFMG0yakFsd2Rrc3ZYejBHRTFXQwp4Z0w4Tm8wbzVXbXZPU0xzMy9qREFoOHJJa0Z4cWVSSE5pdWxtVnpsSTlPRGd0WjdicUNYTDEzd0V3eTdPSkJQCi0tLS0tRU5EIC0tLS0tChIYlUAAFyssOXzZZ8OXS0bOz3zjTVFPyOOtEkYwRAIgKcpH6D0m2/Kc0y6UuV4rXzWolmUVOvZ7igbhea9kq8QCIB3T289QEss36JnfjZpSCSXfoCd9pHpL5V87ZDEKxtcn", - "", - "CgIIBQ==" - ] - } -} diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/channel.tx b/hyperledger_fabric/latest/kafka/channel-artifacts/channel.tx deleted file mode 100644 index bc004cd5..00000000 Binary files a/hyperledger_fabric/latest/kafka/channel-artifacts/channel.tx and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/dev_orderer.log b/hyperledger_fabric/latest/kafka/channel-artifacts/dev_orderer.log deleted file mode 100644 index 32c8074c..00000000 --- a/hyperledger_fabric/latest/kafka/channel-artifacts/dev_orderer.log +++ /dev/null @@ -1,2865 +0,0 @@ -Remove /go/bin/orderer -Building fabric orderer -# github.com/hyperledger/fabric/orderer -/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/libltdl.a(dlopen.o): In function `vm_open': -(.text+0x5d): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/tmp/go-link-038072142/000000.o: In function `_cgo_b0c710f30cfd_C2func_getaddrinfo': -/tmp/go-build/net/_obj/cgo-gcc-prolog:46: warning: Using 'getaddrinfo' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -[001 10-08 01:54:45.98 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -[002 10-08 01:54:45.98 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 10-08 01:54:45.98 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -[004 10-08 01:54:45.99 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 10-08 01:54:45.99 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -[006 10-08 01:54:45.99 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 10-08 01:54:45.99 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -[008 10-08 01:54:45.99 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 10-08 01:54:45.99 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -[00a 10-08 01:54:45.99 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 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -[00c 10-08 01:54:46.00 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 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -[00e 10-08 01:54:46.00 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 10-08 01:54:46.00 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 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP -[011 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP -[012 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[013 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[014 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[015 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC -Wo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr -KJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC -xgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP ------END CERTIFICATE----- -[016 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [d41e545484f47a5a8ce56bcab0ce59db768b0fa07d08062a4d1092808faa40ce] at [/var/hyperledger/orderer/msp/keystore/d41e545484f47a5a8ce56bcab0ce59db768b0fa07d08062a4d1092808faa40ce_sk]... -[017 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC -Wo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr -KJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC -xgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP ------END CERTIFICATE----- -[018 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[019 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main -> DEBU logging level and localMSP initialized -[01a 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> DEBU Start() -[01b 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -[01c 10-08 01:54:46.00 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New -> DEBU New a file ledger under /var/hyperledger/production/orderer -[01d 10-08 01:54:46.00 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/] -[01e 10-08 01:54:46.00 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 -[01f 10-08 01:54:46.00 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 -[020 10-08 01:54:46.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.createSubDir -> DEBU createSubDir: parentDir=/var/hyperledger/production/orderer, subDir=chains -[021 10-08 01:54:46.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.createSubDir -> DEBU Create chains sub-dir -[022 10-08 01:54:46.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar -> DEBU There is no chain, hence we must be in bootstrapping -[023 10-08 01:54:46.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel -> DEBU Create system channel with cfg=&{General:{LedgerType:file ListenAddress:0.0.0.0 ListenPort:7050 TLS:{Enabled:true PrivateKey:/var/hyperledger/orderer/tls/server.key Certificate:/var/hyperledger/orderer/tls/server.crt RootCAs:[/var/hyperledger/orderer/tls/ca.crt] ClientAuthEnabled:false ClientRootCAs:[]} GenesisMethod:file GenesisProfile:TwoOrgsOrdererGenesis SystemChannel:testchainid GenesisFile:/var/hyperledger/orderer/orderer.genesis.block Profile:{Enabled:false Address:0.0.0.0:6060} LogLevel:DEBUG LogFormat:%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} LocalMSPDir:/var/hyperledger/orderer/msp LocalMSPID:OrdererMSP BCCSP:0xc420389be0} FileLedger:{Location:/var/hyperledger/production/orderer Prefix:hyperledger-fabric-ordererledger} RAMLedger:{HistorySize:1000} Kafka:{Retry:{ShortInterval:1s ShortTotal:30s LongInterval:5m0s LongTotal:12h0m0s NetworkTimeouts:{DialTimeout:10s ReadTimeout:10s WriteTimeout:10s} Metadata:{RetryMax:3 RetryBackoff:250ms} Producer:{RetryMax:3 RetryBackoff:100ms} Consumer:{RetryBackoff:2s}} Verbose:true Version:{version:[0 10 2 0]} TLS:{Enabled:false PrivateKey: Certificate: RootCAs:[] ClientAuthEnabled:false ClientRootCAs:[]}} Debug:{BroadcastTraceDir: DeliverTraceDir:}}, ledgerFactory=&{blkstorageProvider:0xc4200d22c0 ledgers:map[] mutex:{state:0 sema:0}} -[024 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate -> DEBU fileLedgerFactory will GetOrCreate testchainid -[025 10-08 01:54:46.02 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 -[026 10-08 01:54:46.02 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/] -[027 10-08 01:54:46.02 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 -[028 10-08 01:54:46.02 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 -[029 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -[02a 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] -[02b 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[02c 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[02d 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -[02e 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -2017/10/08 01:54:46 proto: textWriter unindented too far -2017/10/08 01:54:46 proto: textWriter unindented too far -[02f 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append -> DEBU Add block to ledger: header:<6:39 0:"\x00" } 0:4 4:127 1084:/* unknown wire type 6 */ 1069:3177962149 435:108 232139888987:/* unexpected EOF */ } 1637:/* unexpected EOF */ 12:63 1:/* unknown wire type 6 */ 94581:/* unexpected EOF */ /* unexpected EOF */ >data:<1:"\ny\n[\b\x01\x10\x01\x1a\x06\b\x9e\xdd\xdd\xce\x05\"\vtestchainid*@1a1b979dfa8cadf6aaa24c1e0f359ff6cca14741ee34f49da20685f6e8ec0cf0\x12\x1a\x12\x18)\x0e־\\\x01\xd4U\x85\xbc73\xc9\xc7\x147\vC\x16\x02\xedM\f{\x12\x9dF\n\x9aF\x12\x97F\x12\x95,\n\vConsortiums\x12\x85,\x12\xba+\n\x10SampleConsortium\x12\xa5+\x12\xa2\x15\n\aOrg1MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins*\x06Admins\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\x1a@\n\x15ChannelCreationPolicy\x12'\x12\f\b\x03\x12\b\n\x06Admins\x1a\x17/Channel/Orderer/Admins*\x17/Channel/Orderer/Admins\"-\n\x06Admins\x12#\x12\b\b\x01\x12\x04\x12\x02\x12\x00\x1a\x17/Channel/Orderer/Admins*\x17/Channel/Orderer/Admins\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins*\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins" >metadata: -[030 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr -[031 10-08 01:54:46.02 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{0xef, 0x21, 0x3a, 0xa0, 0xb0, 0xd0, 0x65, 0x53, 0x53, 0xbf, 0x72, 0xbe, 0xd6, 0x45, 0x7e, 0xd3, 0xd4, 0xd, 0x36, 0xf1, 0xbf, 0x6b, 0x60, 0xad, 0xaf, 0x2c, 0x29, 0x5c, 0xe3, 0xd, 0x5a, 0xff} txOffsets= -txId=1a1b979dfa8cadf6aaa24c1e0f359ff6cca14741ee34f49da20685f6e8ec0cf0 locPointer=offset=38, bytesLength=9120 -] -[032 10-08 01:54:46.02 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=[9163], isChainEmpty=[false], lastBlockNumber=[0] -[033 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU ===NewRegistrar Begin -[034 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU ===NewRegistrar End -[035 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU existingChains=[testchainid] -[036 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU processing chain testchainid -[037 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.GetOrCreate -> DEBU fileLedgerFactory will GetOrCreate testchainid -[038 10-08 01:54:46.02 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] -[039 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9163], Going to peek [8] bytes -[03a 10-08 01:54:46.02 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=[9161], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[03b 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9161] read from file [0] -[03c 10-08 01:54:46.02 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] -[03d 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9163], Going to peek [8] bytes -[03e 10-08 01:54:46.02 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=[9161], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[03f 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9161] read from file [0] -[040 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU getConfigTx=payload:"\ny\n[\010\001\020\001\032\006\010\236\335\335\316\005\"\013testchainid*@1a1b979dfa8cadf6aaa24c1e0f359ff6cca14741ee34f49da20685f6e8ec0cf0\022\032\022\030)\016\326\276\\\001\324U\205\27473\311\307\0247\013C\026\002\355M\014{\022\235F\n\232F\022\227F\022\225,\n\013Consortiums\022\205,\022\272+\n\020SampleConsortium\022\245+\022\242\025\n\007Org1MSP\022\226\025\032\364\023\n\003MSP\022\354\023\022\341\023\022\336\023\n\007Org1MSP\022\317\006-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\016\n\004SHA2\022\006SHA256J\327\006-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\032\006Admins\"0\n\007Writers\022%\022\033\010\001\022\027\022\010\022\006\010\001\022\002\010\000\032\013\022\t\n\007Org1MSP\032\006Admins\"1\n\006Admins\022'\022\035\010\001\022\031\022\010\022\006\010\001\022\002\010\000\032\r\022\013\n\007Org1MSP\020\001\032\006Admins\"0\n\007Readers\022%\022\033\010\001\022\027\022\010\022\006\010\001\022\002\010\000\032\013\022\t\n\007Org1MSP\032\006Admins*\006Admins\022\242\025\n\007Org2MSP\022\226\025\032\364\023\n\003MSP\022\354\023\022\341\023\022\336\023\n\007Org2MSP\022\317\006-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\016\n\004SHA2\022\006SHA256J\327\006-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\032\006Admins\"0\n\007Writers\022%\022\033\010\001\022\027\022\010\022\006\010\001\022\002\010\000\032\013\022\t\n\007Org2MSP\032\006Admins\"1\n\006Admins\022'\022\035\010\001\022\031\022\010\022\006\010\001\022\002\010\000\032\r\022\013\n\007Org2MSP\020\001\032\006Admins\"0\n\007Readers\022%\022\033\010\001\022\027\022\010\022\006\010\001\022\002\010\000\032\013\022\t\n\007Org2MSP\032\006Admins*\006Admins\032@\n\025ChannelCreationPolicy\022'\022\014\010\003\022\010\n\006Admins\032\027/Channel/Orderer/Admins*\027/Channel/Orderer/Admins\"-\n\006Admins\022#\022\010\010\001\022\004\022\002\022\000\032\027/Channel/Orderer/Admins*\027/Channel/Orderer/Admins\022\346\027\n\007Orderer\022\332\027\022\336\024\n\nOrdererOrg\022\317\024\032\244\023\n\003MSP\022\234\023\022\221\023\022\216\023\n\nOrdererMSP\022\262\006-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\375\005-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\016\n\004SHA2\022\006SHA256J\272\006-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\032\006Admins\"3\n\007Readers\022(\022\036\010\001\022\032\022\010\022\006\010\001\022\002\010\000\032\016\022\014\n\nOrdererMSP\032\006Admins\"3\n\007Writers\022(\022\036\010\001\022\032\022\010\022\006\010\001\022\002\010\000\032\016\022\014\n\nOrdererMSP\032\006Admins\"4\n\006Admins\022*\022 \010\001\022\034\022\010\022\006\010\001\022\002\010\000\032\020\022\016\n\nOrdererMSP\020\001\032\006Admins*\006Admins\032\036\n\014BatchTimeout\022\016\022\004\n\0022s\032\006Admins\032\037\n\023ChannelRestrictions\022\010\032\006Admins\032N\n\014KafkaBrokers\022>\0224\n\013kafka0:9092\n\013kafka1:9092\n\013kafka2:9092\n\013kafka3:9092\032\006Admins\032\"\n\rConsensusType\022\021\022\007\n\005kafka\032\006Admins\032\"\n\tBatchSize\022\025\022\013\010\n\020\200\200\2001\030\200\200 \032\006Admins\"*\n\017BlockValidation\022\027\022\r\010\003\022\t\n\007Writers\032\006Admins\"\"\n\007Readers\022\027\022\r\010\003\022\t\n\007Readers\032\006Admins\"\"\n\007Writers\022\027\022\r\010\003\022\t\n\007Writers\032\006Admins\"\"\n\006Admins\022\030\022\016\010\003\022\n\n\006Admins\020\002\032\006Admins*\006Admins\032I\n\020OrdererAddresses\0225\022\032\n\030orderer.example.com:7050\032\027/Channel/Orderer/Admins\032&\n\020HashingAlgorithm\022\022\022\010\n\006SHA256\032\006Admins\032-\n\031BlockDataHashingStructure\022\020\022\006\010\377\377\377\377\017\032\006Admins\"\"\n\006Admins\022\030\022\016\010\003\022\n\n\006Admins\020\002\032\006Admins\"\"\n\007Readers\022\027\022\r\010\003\022\t\n\007Readers\032\006Admins\"\"\n\007Writers\022\027\022\r\010\003\022\t\n\007Writers\032\006Admins*\006Admins" -[041 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources -> DEBU configEnvelope=config: > 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: > mod_policy:"/Channel/Orderer/Admins" > > policies: mod_policy:"/Channel/Orderer/Admins" > > mod_policy:"/Channel/Orderer/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: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > -[042 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[043 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[044 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[045 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[046 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[047 10-08 01:54:46.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[048 10-08 01:54:46.03 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 -[049 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -[04a 10-08 01:54:46.03 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 -[04b 10-08 01:54:46.03 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 -[04c 10-08 01:54:46.03 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 -[04d 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[04e 10-08 01:54:46.03 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 -[04f 10-08 01:54:46.03 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 -[050 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[051 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[052 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[053 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[054 10-08 01:54:46.03 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 -[055 10-08 01:54:46.03 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 -[056 10-08 01:54:46.03 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 -[057 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[058 10-08 01:54:46.03 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 -[059 10-08 01:54:46.03 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 -[05a 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[05b 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[05c 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[05d 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[05e 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[05f 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[060 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[061 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[062 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[063 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[064 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[065 10-08 01:54:46.03 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 -[066 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[067 10-08 01:54:46.03 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 -[068 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[069 10-08 01:54:46.03 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 -[06a 10-08 01:54:46.03 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 -[06b 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[06c 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[06d 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[06e 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[06f 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[070 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[071 10-08 01:54:46.03 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 -[072 10-08 01:54:46.03 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 -[073 10-08 01:54:46.03 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 -[074 10-08 01:54:46.03 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 -[075 10-08 01:54:46.03 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 -[076 10-08 01:54:46.03 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 -[077 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums -[078 10-08 01:54:46.03 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 -[079 10-08 01:54:46.03 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 -[07a 10-08 01:54:46.03 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 -[07b 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[07c 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[07d 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[07e 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[07f 10-08 01:54:46.03 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 -[080 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[081 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[082 10-08 01:54:46.03 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 -[083 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[084 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[085 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[086 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[087 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[088 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[089 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[08a 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[08b 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[08c 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[08d 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[08e 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[08f 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[090 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[091 10-08 01:54:46.03 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[092 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[093 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[094 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums -[095 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -[096 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -[097 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -[098 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -[099 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -[09a 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -[09b 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -[09c 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -[09d 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -[09e 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -[09f 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -[0a0 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -[0a1 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -[0a2 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[0a3 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[0a4 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[0a5 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[0a6 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[0a7 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[0a8 10-08 01:54:46.04 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' -[0a9 10-08 01:54:46.04 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' -[0aa 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[0ab 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[0ac 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[0ad 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[0ae 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[0af 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[0b0 10-08 01:54:46.04 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 [] -[0b1 10-08 01:54:46.04 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 -[0b2 10-08 01:54:46.04 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' -[0b3 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.GetOrCreate -> DEBU fileLedgerFactory will GetOrCreate testchainid -[0b4 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU Starting system chain testchainid -[0b5 10-08 01:54:46.04 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] -[0b6 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9163], Going to peek [8] bytes -[0b7 10-08 01:54:46.04 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=[9161], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[0b8 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9161] read from file [0] -[0b9 10-08 01:54:46.04 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) -[0ba 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.HandleChain.newChain -> INFO [channel: testchainid] Starting chain with last persisted offset -3 and last recorded block 0 -[0bb 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources -[0bc 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.CreateSystemChannelFilters -> DEBU OrdererConfig=&{protos:0xc4202a5ec0 orgs:map[OrdererOrg:0xc4201c9e40] batchTimeout:2000000000} -[0bd 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid -[0be 10-08 01:54:46.04 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] -[0bf 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9163], Going to peek [8] bytes -[0c0 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9161], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[0c1 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9161] read from file [0] -[0c2 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash ef213aa0b0d0655353bf72bed6457ed3d40d36f1bf6b60adaf2c295ce30d5aff and orderer type kafka -[0c3 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: - Version: 1.1.0 - Go version: go1.9.1 - OS/Arch: linux/amd64 - Experimental features: -[0c4 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled -[0c5 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> DEBU startThread() begin -[0c6 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel -> INFO [channel: testchainid] Setting up the producer for this channel... -[0c7 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel.retry.try -> DEBU [channel: testchainid] Connecting to the Kafka cluster -[0c8 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient -> DEBU Initializing new client -[0c9 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[0ca 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.any.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[0cb 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for all topics from broker kafka2:9092 -[0cc 10-08 01:54:46.04 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka2:9092 (unregistered) -[0cd 10-08 01:54:46.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests -[0ce 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #2 at kafka2:9092 -[0cf 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #1 at kafka1:9092 -[0d0 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #3 at kafka3:9092 -[0d1 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #0 at kafka0:9092 -[0d2 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient -> DEBU Successfully initialized new client -[0d3 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel.retry.try -> DEBU [channel: testchainid] Error is nil, breaking the retry loop -[0d4 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] Producer set up successfully -[0d5 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage -> INFO [channel: testchainid] About to post the CONNECT message... -[0d6 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: testchainid] Attempting to post the CONNECT message... -[0d7 10-08 01:54:46.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [testchainid] from broker kafka2:9092 -[0d8 10-08 01:54:46.22 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata found some partitions to be leaderless -[0d9 10-08 01:54:46.22 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1 -> DEBU client/metadata retrying after 250ms... (3 attempts remaining) -[0da 10-08 01:54:46.47 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [testchainid] from broker kafka2:9092 -[0db 10-08 01:54:46.50 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.Leader.cachedLeader.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[0dc 10-08 01:54:46.50 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/3 starting up -[0dd 10-08 01:54:46.50 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/3 state change to [open] on testchainid/0 -[0de 10-08 01:54:46.50 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka3:9092 (registered as #3) -[0df 10-08 01:54:46.79 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run.handleResponse.handleSuccess.eachPartition.func1 -> DEBU producer/broker/3 state change to [retrying] on testchainid/0 because kafka server: Request was for a topic or partition that does not exist on this broker. -[0e0 10-08 01:54:46.79 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.newHighWatermark -> DEBU producer/leader/testchainid/0 state change to [retrying-1] -[0e1 10-08 01:54:46.79 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.newHighWatermark -> DEBU producer/leader/testchainid/0 abandoning broker 3 -[0e2 10-08 01:54:46.79 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/3 state change to [closed] on testchainid/0 -[0e3 10-08 01:54:46.79 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run.shutdown -> DEBU producer/broker/3 shut down -[0e4 10-08 01:54:46.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.updateLeader.Run.doWork.func1.func1.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [testchainid] from broker kafka2:9092 -[0e5 10-08 01:54:46.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/3 starting up -[0e6 10-08 01:54:46.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/3 state change to [open] on testchainid/0 -[0e7 10-08 01:54:46.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch -> DEBU producer/leader/testchainid/0 selected broker 3 -[0e8 10-08 01:54:46.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.flushRetryBuffers -> DEBU producer/leader/testchainid/0 state change to [flushing-1] -[0e9 10-08 01:54:46.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.flushRetryBuffers -> DEBU producer/leader/testchainid/0 state change to [normal] -[0ea 10-08 01:54:47.88 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: testchainid] Error is nil, breaking the retry loop -[0eb 10-08 01:54:47.89 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] CONNECT message posted successfully -[0ec 10-08 01:54:47.89 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel -> INFO [channel: testchainid] Setting up the parent consumer for this channel... -[0ed 10-08 01:54:47.89 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel.retry.try -> DEBU [channel: testchainid] Connecting to the Kafka cluster -[0ee 10-08 01:54:47.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient -> DEBU Initializing new client -[0ef 10-08 01:54:47.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[0f0 10-08 01:54:47.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.any.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[0f1 10-08 01:54:47.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for all topics from broker kafka1:9092 -[0f2 10-08 01:54:47.89 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka1:9092 (unregistered) -[0f3 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #2 at kafka2:9092 -[0f4 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #1 at kafka1:9092 -[0f5 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #3 at kafka3:9092 -[0f6 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #0 at kafka0:9092 -[0f7 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient -> DEBU Successfully initialized new client -[0f8 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel.retry.try -> DEBU [channel: testchainid] Error is nil, breaking the retry loop -[0f9 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] Parent consumer set up successfully -[0fa 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> DEBU [channel: testchainid] chain.lastOffsetPersisted=-3 -[0fb 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel -> INFO [channel: testchainid] Setting up the channel consumer for this channel (start offset: -2)... -[0fc 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel.retry.try -> DEBU [channel: testchainid] Connecting to the Kafka cluster -[0fd 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupChannelConsumerForChannel.retry.try.func1.ConsumePartition.chooseStartingOffset.GetOffset.getOffset.Leader.cachedLeader.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[0fe 10-08 01:54:47.91 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka3:9092 (registered as #3) -[0ff 10-08 01:54:47.92 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] subscriptionConsumer)-fm.subscriptionConsumer.updateSubscriptions -> DEBU consumer/broker/3 added subscription to testchainid/0 -[100 10-08 01:54:47.92 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel.retry.try -> DEBU [channel: testchainid] Error is nil, breaking the retry loop -[101 10-08 01:54:47.92 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] Channel consumer set up successfully -[102 10-08 01:54:47.92 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] Start phase completed successfully -[103 10-08 01:54:47.92 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: testchainid] Successfully unmarshalled consumed message, offset is 0. Inspecting type... -[104 10-08 01:54:47.92 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processConnect -> DEBU [channel: testchainid] It's a connect message - ignoring -[105 10-08 01:54:48.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[106 10-08 01:54:48.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:43994 -[107 10-08 01:54:48.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:43994 -[108 10-08 01:54:48.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[109 10-08 01:54:48.18 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.11:43996 -[10a 10-08 01:54:48.18 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.11:43996 -[10b 10-08 01:54:48.18 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 -[10c 10-08 01:54:48.18 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 -[10d 10-08 01:54:48.18 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 -[10e 10-08 01:54:48.18 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 -[10f 10-08 01:54:48.18 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 -[110 10-08 01:54:48.18 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 -[111 10-08 01:54:48.18 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 -[112 10-08 01:54:48.18 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 -[113 10-08 01:54:48.18 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 -[114 10-08 01:54:48.18 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 -[115 10-08 01:54:48.18 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 -[116 10-08 01:54:48.18 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 -[117 10-08 01:54:48.18 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 -[118 10-08 01:54:48.18 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 -[119 10-08 01:54:48.18 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 -[11a 10-08 01:54:48.18 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 -[11b 10-08 01:54:48.18 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 -[11c 10-08 01:54:48.18 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 -[11d 10-08 01:54:48.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[11e 10-08 01:54:48.18 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 -[11f 10-08 01:54:48.18 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 -[120 10-08 01:54:48.19 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[121 10-08 01:54:48.19 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[122 10-08 01:54:48.19 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[123 10-08 01:54:48.19 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[124 10-08 01:54:48.19 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 -[125 10-08 01:54:48.19 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 -[126 10-08 01:54:48.19 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 -[127 10-08 01:54:48.19 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 -[128 10-08 01:54:48.19 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 -[129 10-08 01:54:48.19 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 -[12a 10-08 01:54:48.19 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 -[12b 10-08 01:54:48.19 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 -[12c 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[12d 10-08 01:54:48.19 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 -[12e 10-08 01:54:48.19 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 -[12f 10-08 01:54:48.19 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[130 10-08 01:54:48.19 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[131 10-08 01:54:48.19 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[132 10-08 01:54:48.19 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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[133 10-08 01:54:48.19 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 -[134 10-08 01:54:48.19 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 -[135 10-08 01:54:48.19 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 -[136 10-08 01:54:48.19 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 -[137 10-08 01:54:48.19 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 -[138 10-08 01:54:48.19 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 -[139 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[13a 10-08 01:54:48.19 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 -[13b 10-08 01:54:48.19 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 -[13c 10-08 01:54:48.19 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[13d 10-08 01:54:48.19 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[13e 10-08 01:54:48.19 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[13f 10-08 01:54:48.19 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[140 10-08 01:54:48.19 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) -[141 10-08 01:54:48.19 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 -[142 10-08 01:54:48.19 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 -[143 10-08 01:54:48.19 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 -[144 10-08 01:54:48.19 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 -[145 10-08 01:54:48.19 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 -[146 10-08 01:54:48.19 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 -[147 10-08 01:54:48.19 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 -[148 10-08 01:54:48.19 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 -[149 10-08 01:54:48.19 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 -[14a 10-08 01:54:48.19 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 -[14b 10-08 01:54:48.19 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 -[14c 10-08 01:54:48.19 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 -[14d 10-08 01:54:48.19 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 -[14e 10-08 01:54:48.19 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 -[14f 10-08 01:54:48.19 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 -[150 10-08 01:54:48.19 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 -[151 10-08 01:54:48.19 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 -[152 10-08 01:54:48.19 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 -[153 10-08 01:54:48.19 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 -[154 10-08 01:54:48.19 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 -[155 10-08 01:54:48.19 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 -[156 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[157 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[158 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[159 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[15a 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[15b 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[15c 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[15d 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[15e 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[15f 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[160 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[161 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[162 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[163 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[164 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[165 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[166 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[167 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[168 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[169 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[16a 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[16b 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[16c 10-08 01:54:48.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[16d 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[16e 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[16f 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[170 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[171 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[172 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[173 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[174 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[175 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[176 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[177 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[178 10-08 01:54:48.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[179 10-08 01:54:48.20 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: [Groups] /Channel -[17a 10-08 01:54:48.20 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: [Groups] /Channel/Application -[17b 10-08 01:54:48.20 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: [Groups] /Channel/Application/Org1MSP -[17c 10-08 01:54:48.20 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: [Groups] /Channel/Application/Org2MSP -[17d 10-08 01:54:48.20 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: [Values] /Channel/Consortium -[17e 10-08 01:54:48.20 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: [Groups] /Channel -[17f 10-08 01:54:48.20 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: [Groups] /Channel/Application -[180 10-08 01:54:48.20 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: [Groups] /Channel/Application/Org1MSP -[181 10-08 01:54:48.20 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: [Groups] /Channel/Application/Org2MSP -[182 10-08 01:54:48.20 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 -[183 10-08 01:54:48.20 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 -[184 10-08 01:54:48.20 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 -[185 10-08 01:54:48.20 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: [Values] /Channel/Consortium -[186 10-08 01:54:48.20 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 -[187 10-08 01:54:48.20 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 -[188 10-08 01:54:48.20 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: [Groups] /Channel/Application -[189 10-08 01:54:48.20 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 -[18a 10-08 01:54:48.20 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 [] -[18b 10-08 01:54:48.20 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 -[18c 10-08 01:54:48.20 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 -[18d 10-08 01:54:48.20 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] -[18e 10-08 01:54:48.20 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 -[18f 10-08 01:54:48.20 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 -[190 10-08 01:54:48.20 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 [] -[191 10-08 01:54:48.20 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 -[192 10-08 01:54:48.20 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 -[193 10-08 01:54:48.20 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 == -[194 10-08 01:54:48.20 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 -[195 10-08 01:54:48.20 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 == -[196 10-08 01:54:48.20 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 -[197 10-08 01:54:48.20 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[198 10-08 01:54:48.20 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 0xc4201243e0 gate 1507427688208184696 evaluation starts -[199 10-08 01:54:48.20 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 0xc4201243e0 signed by 0 principal evaluation starts (used [false]) -[19a 10-08 01:54:48.20 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 0xc4201243e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[19b 10-08 01:54:48.20 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 0xc4201243e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[19c 10-08 01:54:48.20 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 0xc4201243e0 principal evaluation fails -[19d 10-08 01:54:48.20 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 0xc4201243e0 gate 1507427688208184696 evaluation fails -[19e 10-08 01:54:48.20 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 -[19f 10-08 01:54:48.20 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 -[1a0 10-08 01:54:48.20 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 == -[1a1 10-08 01:54:48.20 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 0xc4201243f0 gate 1507427688208636391 evaluation starts -[1a2 10-08 01:54:48.20 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 0xc4201243f0 signed by 0 principal evaluation starts (used [false]) -[1a3 10-08 01:54:48.20 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 0xc4201243f0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1a4 10-08 01:54:48.20 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 -[1a5 10-08 01:54:48.20 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 0xc4201243f0 principal matched by identity 0 -[1a6 10-08 01:54:48.20 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 93 3a fd 54 04 c3 21 f7 68 40 ce f0 ac 48 64 cd |.:.T..!.h@...Hd.| -00000010 62 5d 78 8d cb 69 8c f3 77 8f 6d 69 01 37 8e 2f |b]x..i..w.mi.7./| -[1a7 10-08 01:54:48.20 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 44 02 20 5f bf d4 0d 2f 7b da a2 8d 43 bc d5 |0D. _.../{...C..| -00000010 f3 fb df 62 ad 9b 9d de 36 06 0a a0 7f ef 82 29 |...b....6......)| -00000020 27 1e 57 c4 02 20 73 57 4a d6 90 4d 89 41 75 a7 |'.W.. sWJ..M.Au.| -00000030 31 30 9f b0 b2 d6 c5 b8 62 ac 16 f3 dc 19 30 4b |10......b.....0K| -00000040 be 97 79 e9 8a 48 |..y..H| -[1a8 10-08 01:54:48.20 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 0xc4201243f0 principal evaluation succeeds for identity 0 -[1a9 10-08 01:54:48.20 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 0xc4201243f0 gate 1507427688208636391 evaluation succeeds -[1aa 10-08 01:54:48.20 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 -[1ab 10-08 01:54:48.20 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 -[1ac 10-08 01:54:48.20 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 -[1ad 10-08 01:54:48.20 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 -[1ae 10-08 01:54:48.20 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 -[1af 10-08 01:54:48.20 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" -[1b0 10-08 01:54:48.20 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" -[1b1 10-08 01:54:48.20 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" -[1b2 10-08 01:54:48.20 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" -[1b3 10-08 01:54:48.20 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" -[1b4 10-08 01:54:48.20 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" -[1b5 10-08 01:54:48.20 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" -[1b6 10-08 01:54:48.20 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" -[1b7 10-08 01:54:48.20 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" -[1b8 10-08 01:54:48.20 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" -[1b9 10-08 01:54:48.21 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" -[1ba 10-08 01:54:48.21 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" -[1bb 10-08 01:54:48.21 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" -[1bc 10-08 01:54:48.21 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" -[1bd 10-08 01:54:48.21 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" -[1be 10-08 01:54:48.21 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" -[1bf 10-08 01:54:48.21 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" -[1c0 10-08 01:54:48.21 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" -[1c1 10-08 01:54:48.21 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" -[1c2 10-08 01:54:48.21 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 -[1c3 10-08 01:54:48.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[1c4 10-08 01:54:48.21 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 -[1c5 10-08 01:54:48.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[1c6 10-08 01:54:48.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608E88AE6CE0522...ACE7F993AB6465E58DDECCAA59D1E274 -[1c7 10-08 01:54:48.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: E70B9BDD264E0C4C603EB4D1EAEED41215C3BDD9DE05BCB2429E7552D9CB4C1A -[1c8 10-08 01:54:48.21 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 -[1c9 10-08 01:54:48.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[1ca 10-08 01:54:48.21 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 -[1cb 10-08 01:54:48.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[1cc 10-08 01:54:48.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AB3060A1708041A0608E88AE6CE0522...59A7BC3885FF7D76C488752362D12338 -[1cd 10-08 01:54:48.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 658F4D146B1AAEE6C5F5C9704D3DBF2C2E8C0711BA66060C81ADF185BBAA57E3 -[1ce 10-08 01:54:48.21 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 == -[1cf 10-08 01:54:48.21 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 -[1d0 10-08 01:54:48.21 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 == -[1d1 10-08 01:54:48.21 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 -[1d2 10-08 01:54:48.21 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 == -[1d3 10-08 01:54:48.21 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 -[1d4 10-08 01:54:48.21 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----- -MIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC -Wo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr -KJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC -xgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP ------END CERTIFICATE----- -[1d5 10-08 01:54:48.21 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 0xc4201244f0 gate 1507427688211963672 evaluation starts -[1d6 10-08 01:54:48.21 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 0xc4201244f0 signed by 0 principal evaluation starts (used [false]) -[1d7 10-08 01:54:48.21 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 0xc4201244f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f6741774942416749524149523249436e69564f71416d6b2f76346a726f7a466377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a30444151634451674145465732366339464b4c38556a57303259706c487252527550575566436e7a44484158456a663768494a78635730384d430a576f357254537a3746685937776965684a4a39336376642b49646b77594e706347776f4265714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167325a714c67794e4a314f39632f7a56373162416753664737396a47720a4b4a38667273634332614d3743746b77436759494b6f5a497a6a3045417749445277417752414968414e693445306d326a416c77646b7376587a3047453157430a78674c384e6f306f35576d764f534c73332f6a4441683872496b4678716552484e69756c6d567a6c49394f4467745a37627143584c313377457779374f4a42500a2d2d2d2d2d454e44202d2d2d2d2d0a -[1d8 10-08 01:54:48.21 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 -[1d9 10-08 01:54:48.21 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 -[1da 10-08 01:54:48.21 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 0xc4201244f0 principal matched by identity 0 -[1db 10-08 01:54:48.21 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 65 8f 4d 14 6b 1a ae e6 c5 f5 c9 70 4d 3d bf 2c |e.M.k......pM=.,| -00000010 2e 8c 07 11 ba 66 06 0c 81 ad f1 85 bb aa 57 e3 |.....f........W.| -[1dc 10-08 01:54:48.21 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 3d 3f 99 9d 3b db 62 31 60 79 27 5b |0D. =?..;.b1`y'[| -00000010 b5 61 fa 46 de c5 ca c0 8c 2b 11 41 87 0f 78 b9 |.a.F.....+.A..x.| -00000020 f2 3b c1 df 02 20 16 9c af 35 64 9e 18 8f 22 7d |.;... ...5d..."}| -00000030 24 5f ce 4f bd 10 eb 79 90 2f b3 56 f5 b7 17 59 |$_.O...y./.V...Y| -00000040 e2 03 42 49 2e 90 |..BI..| -[1dd 10-08 01:54:48.21 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 0xc4201244f0 principal evaluation succeeds for identity 0 -[1de 10-08 01:54:48.21 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 0xc4201244f0 gate 1507427688211963672 evaluation succeeds -[1df 10-08 01:54:48.21 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 -[1e0 10-08 01:54:48.21 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 -[1e1 10-08 01:54:48.21 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 -[1e2 10-08 01:54:48.21 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 -[1e3 10-08 01:54:48.21 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 -[1e4 10-08 01:54:48.21 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 -[1e5 10-08 01:54:48.21 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 -[1e6 10-08 01:54:48.21 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 -[1e7 10-08 01:54:48.21 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 -[1e8 10-08 01:54:48.21 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 -[1e9 10-08 01:54:48.21 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 -[1ea 10-08 01:54:48.21 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 -[1eb 10-08 01:54:48.21 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 -[1ec 10-08 01:54:48.21 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 -[1ed 10-08 01:54:48.21 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 -[1ee 10-08 01:54:48.21 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 -[1ef 10-08 01:54:48.21 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 -[1f0 10-08 01:54:48.21 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 -[1f1 10-08 01:54:48.21 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 -[1f2 10-08 01:54:48.21 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 -[1f3 10-08 01:54:48.21 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 -[1f4 10-08 01:54:48.21 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 -[1f5 10-08 01:54:48.21 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1f6 10-08 01:54:48.21 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 -[1f7 10-08 01:54:48.21 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 -[1f8 10-08 01:54:48.21 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[1f9 10-08 01:54:48.21 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[1fa 10-08 01:54:48.21 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[1fb 10-08 01:54:48.21 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[1fc 10-08 01:54:48.21 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 -[1fd 10-08 01:54:48.21 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 -[1fe 10-08 01:54:48.21 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 -[1ff 10-08 01:54:48.21 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 -[200 10-08 01:54:48.21 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 -[201 10-08 01:54:48.21 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 -[202 10-08 01:54:48.21 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 -[203 10-08 01:54:48.21 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 -[204 10-08 01:54:48.21 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[205 10-08 01:54:48.21 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 -[206 10-08 01:54:48.21 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 -[207 10-08 01:54:48.21 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[208 10-08 01:54:48.21 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[209 10-08 01:54:48.21 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[20a 10-08 01:54:48.21 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[20b 10-08 01:54:48.21 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 -[20c 10-08 01:54:48.21 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 -[20d 10-08 01:54:48.21 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 -[20e 10-08 01:54:48.21 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 -[20f 10-08 01:54:48.21 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 -[210 10-08 01:54:48.21 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 -[211 10-08 01:54:48.21 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[212 10-08 01:54:48.21 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 -[213 10-08 01:54:48.21 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 -[214 10-08 01:54:48.21 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[215 10-08 01:54:48.21 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[216 10-08 01:54:48.21 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[217 10-08 01:54:48.21 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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[218 10-08 01:54:48.21 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) -[219 10-08 01:54:48.21 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 -[21a 10-08 01:54:48.21 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 -[21b 10-08 01:54:48.21 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 -[21c 10-08 01:54:48.21 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 -[21d 10-08 01:54:48.21 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 -[21e 10-08 01:54:48.21 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 -[21f 10-08 01:54:48.21 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 -[220 10-08 01:54:48.21 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 -[221 10-08 01:54:48.21 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 -[222 10-08 01:54:48.21 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 -[223 10-08 01:54:48.21 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 -[224 10-08 01:54:48.21 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 -[225 10-08 01:54:48.21 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 -[226 10-08 01:54:48.21 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 -[227 10-08 01:54:48.21 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 -[228 10-08 01:54:48.21 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 -[229 10-08 01:54:48.21 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 -[22a 10-08 01:54:48.21 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 -[22b 10-08 01:54:48.21 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 -[22c 10-08 01:54:48.21 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 -[22d 10-08 01:54:48.22 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 -[22e 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[22f 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[230 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[231 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[232 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[233 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[234 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[235 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[236 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[237 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[238 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[239 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[23a 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[23b 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[23c 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[23d 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[23e 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[23f 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[240 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[241 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[242 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[243 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[244 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[245 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[246 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[247 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[248 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[249 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[24a 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[24b 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[24c 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[24d 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[24e 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[24f 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[250 10-08 01:54:48.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[251 10-08 01:54:48.22 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: [Groups] /Channel -[252 10-08 01:54:48.22 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: [Groups] /Channel/Application -[253 10-08 01:54:48.22 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: [Groups] /Channel/Application/Org1MSP -[254 10-08 01:54:48.22 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: [Groups] /Channel/Application/Org2MSP -[255 10-08 01:54:48.22 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: [Values] /Channel/Consortium -[256 10-08 01:54:48.22 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: [Groups] /Channel -[257 10-08 01:54:48.22 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: [Groups] /Channel/Application -[258 10-08 01:54:48.22 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: [Groups] /Channel/Application/Org1MSP -[259 10-08 01:54:48.22 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: [Groups] /Channel/Application/Org2MSP -[25a 10-08 01:54:48.22 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 -[25b 10-08 01:54:48.23 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 -[25c 10-08 01:54:48.23 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 -[25d 10-08 01:54:48.23 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: [Values] /Channel/Consortium -[25e 10-08 01:54:48.23 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 -[25f 10-08 01:54:48.23 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 -[260 10-08 01:54:48.23 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 -[261 10-08 01:54:48.23 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: [Groups] /Channel/Application -[262 10-08 01:54:48.23 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 -[263 10-08 01:54:48.23 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 [] -[264 10-08 01:54:48.23 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 -[265 10-08 01:54:48.23 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 -[266 10-08 01:54:48.23 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] -[267 10-08 01:54:48.23 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 -[268 10-08 01:54:48.23 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 -[269 10-08 01:54:48.23 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 [] -[26a 10-08 01:54:48.23 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 -[26b 10-08 01:54:48.23 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 -[26c 10-08 01:54:48.23 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 == -[26d 10-08 01:54:48.23 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 -[26e 10-08 01:54:48.23 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 == -[26f 10-08 01:54:48.23 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 -[270 10-08 01:54:48.23 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[271 10-08 01:54:48.23 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 0xc420124118 gate 1507427688231770335 evaluation starts -[272 10-08 01:54:48.23 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 0xc420124118 signed by 0 principal evaluation starts (used [false]) -[273 10-08 01:54:48.23 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 0xc420124118 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[274 10-08 01:54:48.23 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 0xc420124118 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[275 10-08 01:54:48.23 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 0xc420124118 principal evaluation fails -[276 10-08 01:54:48.23 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 0xc420124118 gate 1507427688231770335 evaluation fails -[277 10-08 01:54:48.23 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 -[278 10-08 01:54:48.23 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 -[279 10-08 01:54:48.23 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 == -[27a 10-08 01:54:48.23 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 0xc420124128 gate 1507427688232900871 evaluation starts -[27b 10-08 01:54:48.23 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 0xc420124128 signed by 0 principal evaluation starts (used [false]) -[27c 10-08 01:54:48.23 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 0xc420124128 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[27d 10-08 01:54:48.23 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 -[27e 10-08 01:54:48.23 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 0xc420124128 principal matched by identity 0 -[27f 10-08 01:54:48.23 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 93 3a fd 54 04 c3 21 f7 68 40 ce f0 ac 48 64 cd |.:.T..!.h@...Hd.| -00000010 62 5d 78 8d cb 69 8c f3 77 8f 6d 69 01 37 8e 2f |b]x..i..w.mi.7./| -[280 10-08 01:54:48.23 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 44 02 20 5f bf d4 0d 2f 7b da a2 8d 43 bc d5 |0D. _.../{...C..| -00000010 f3 fb df 62 ad 9b 9d de 36 06 0a a0 7f ef 82 29 |...b....6......)| -00000020 27 1e 57 c4 02 20 73 57 4a d6 90 4d 89 41 75 a7 |'.W.. sWJ..M.Au.| -00000030 31 30 9f b0 b2 d6 c5 b8 62 ac 16 f3 dc 19 30 4b |10......b.....0K| -00000040 be 97 79 e9 8a 48 |..y..H| -[281 10-08 01:54:48.23 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 0xc420124128 principal evaluation succeeds for identity 0 -[282 10-08 01:54:48.23 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 0xc420124128 gate 1507427688232900871 evaluation succeeds -[283 10-08 01:54:48.23 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 -[284 10-08 01:54:48.23 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 -[285 10-08 01:54:48.23 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 -[286 10-08 01:54:48.23 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 -[287 10-08 01:54:48.23 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" -[288 10-08 01:54:48.23 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" -[289 10-08 01:54:48.23 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" -[28a 10-08 01:54:48.23 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" -[28b 10-08 01:54:48.23 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" -[28c 10-08 01:54:48.23 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" -[28d 10-08 01:54:48.23 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" -[28e 10-08 01:54:48.23 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" -[28f 10-08 01:54:48.23 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" -[290 10-08 01:54:48.23 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" -[291 10-08 01:54:48.23 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" -[292 10-08 01:54:48.23 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" -[293 10-08 01:54:48.23 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" -[294 10-08 01:54:48.23 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" -[295 10-08 01:54:48.23 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" -[296 10-08 01:54:48.23 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" -[297 10-08 01:54:48.23 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" -[298 10-08 01:54:48.23 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" -[299 10-08 01:54:48.23 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" -[29a 10-08 01:54:48.23 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 -[29b 10-08 01:54:48.23 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 -[29c 10-08 01:54:48.23 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 -[29d 10-08 01:54:48.23 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 -[29e 10-08 01:54:48.23 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 -[29f 10-08 01:54:48.23 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 -[2a0 10-08 01:54:48.23 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 -[2a1 10-08 01:54:48.23 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 -[2a2 10-08 01:54:48.23 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 -[2a3 10-08 01:54:48.23 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 -[2a4 10-08 01:54:48.23 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 -[2a5 10-08 01:54:48.23 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 -[2a6 10-08 01:54:48.23 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 -[2a7 10-08 01:54:48.23 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 -[2a8 10-08 01:54:48.23 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2a9 10-08 01:54:48.23 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 -[2aa 10-08 01:54:48.23 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 -[2ab 10-08 01:54:48.23 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[2ac 10-08 01:54:48.23 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[2ad 10-08 01:54:48.24 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[2ae 10-08 01:54:48.24 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[2af 10-08 01:54:48.24 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 -[2b0 10-08 01:54:48.24 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 -[2b1 10-08 01:54:48.24 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 -[2b2 10-08 01:54:48.24 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 -[2b3 10-08 01:54:48.24 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 -[2b4 10-08 01:54:48.24 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 -[2b5 10-08 01:54:48.24 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2b6 10-08 01:54:48.24 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 -[2b7 10-08 01:54:48.24 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 -[2b8 10-08 01:54:48.24 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[2b9 10-08 01:54:48.24 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[2ba 10-08 01:54:48.24 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[2bb 10-08 01:54:48.24 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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[2bc 10-08 01:54:48.24 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 -[2bd 10-08 01:54:48.24 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 -[2be 10-08 01:54:48.24 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 -[2bf 10-08 01:54:48.24 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 -[2c0 10-08 01:54:48.24 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 -[2c1 10-08 01:54:48.24 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 -[2c2 10-08 01:54:48.24 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 -[2c3 10-08 01:54:48.24 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 -[2c4 10-08 01:54:48.24 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 -[2c5 10-08 01:54:48.24 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 -[2c6 10-08 01:54:48.24 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2c7 10-08 01:54:48.24 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 -[2c8 10-08 01:54:48.24 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 -[2c9 10-08 01:54:48.24 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[2ca 10-08 01:54:48.24 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[2cb 10-08 01:54:48.24 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[2cc 10-08 01:54:48.24 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[2cd 10-08 01:54:48.24 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) -[2ce 10-08 01:54:48.24 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 -[2cf 10-08 01:54:48.24 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 -[2d0 10-08 01:54:48.24 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 -[2d1 10-08 01:54:48.24 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 -[2d2 10-08 01:54:48.24 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 -[2d3 10-08 01:54:48.24 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 -[2d4 10-08 01:54:48.24 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 -[2d5 10-08 01:54:48.24 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 -[2d6 10-08 01:54:48.24 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 -[2d7 10-08 01:54:48.24 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 -[2d8 10-08 01:54:48.24 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 -[2d9 10-08 01:54:48.24 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 -[2da 10-08 01:54:48.24 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 -[2db 10-08 01:54:48.24 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 -[2dc 10-08 01:54:48.24 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 -[2dd 10-08 01:54:48.24 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 -[2de 10-08 01:54:48.24 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 -[2df 10-08 01:54:48.24 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 -[2e0 10-08 01:54:48.24 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 -[2e1 10-08 01:54:48.24 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 -[2e2 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[2e3 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[2e4 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[2e5 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[2e6 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[2e7 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[2e8 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[2e9 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[2ea 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[2eb 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[2ec 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[2ed 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[2ee 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[2ef 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[2f0 10-08 01:54:48.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[2f1 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[2f2 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[2f3 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[2f4 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[2f5 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[2f6 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[2f7 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[2f8 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[2f9 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[2fa 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[2fb 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[2fc 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[2fd 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[2fe 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[2ff 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[300 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[301 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[302 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[303 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[304 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[305 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[306 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[307 10-08 01:54:48.25 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Configure.Configure.enqueue -> DEBU [channel: testchainid] Enqueueing envelope... -[308 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: testchainid] Successfully unmarshalled consumed message, offset is 1. Inspecting type... -[309 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU [channel: testchainid] Processing regular Kafka message of type CONFIG -[30a 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2 -> DEBU [channel: testchainid] Received config message -[30b 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2 -> DEBU [channel: testchainid] Creating isolated block for config message -[30d 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Configure.Configure.enqueue -> DEBU [channel: testchainid] Envelope enqueued successfully -[30e 10-08 01:54:48.27 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.11:43996 -[30c 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources -> DEBU configEnvelope=config: > 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" > > 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: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > > > last_update:\340\235\262\361\214\326I\237<\353\233o\224ul\343N%LG\336\022\236\013\n\216\004\n\017businesschannel\022O\022)\n\013Application\022\032\022\013\n\007Org1MSP\022\000\022\013\n\007Org2MSP\022\000\032\"\n\nConsortium\022\024\022\022\n\020SampleConsortium\032\307\001\022\240\001\n\013Application\022\220\001\010\001\022\013\n\007Org1MSP\022\000\022\013\n\007Org2MSP\022\000\"\"\n\007Writers\022\027\022\r\010\003\022\t\n\007Writers\032\006Admins\"\"\n\007Readers\022\027\022\r\010\003\022\t\n\007Readers\032\006Admins\"\"\n\006Admins\022\030\022\016\010\003\022\n\n\006Admins\020\002\032\006Admins*\006Admins\032\"\n\nConsortium\022\024\022\022\n\020SampleConsortium*\337\001\n\016rscc_seed_data\022\314\001\022\307\001\032M\n\rQSCC.Example1\022<\022\035\n\033/Channel/Application/Admins\032\033/Channel/Application/Admins\0329\n\rQSCC.Example2\022(\022\t\n\007Example\032\033/Channel/Application/Admins\"\036\n\007Example\022\023\022\010\010\001\022\004\022\002\022\000\032\007Example*\033/Channel/Application/Admins\030\001\022\212\007\n\277\006\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\236G\227~\006\265X\001\325&\022?\351\314\245\000\314\010\303\362Y\307|\375\022F0D\002 _\277\324\r/{\332\242\215C\274\325\363\373\337b\255\233\235\3366\006\n\240\177\357\202)'\036W\304\002 sWJ\326\220M\211Au\24710\237\260\262\326\305\270b\254\026\363\334\0310K\276\227y\351\212H" signature:"0E\002!\000\311X-N;L\265\203\252\014c~\243\353\213\177\246\362\032.\177>S\003[R\002\213\246\226\216F\002 \032r\005\037\0059fR\237\245\244\365V\221\033\031\254\347\371\223\253de\345\215\336\314\252Y\321\342t" > -[30f 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[310 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[311 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[312 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[313 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[314 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[315 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[316 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[317 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[318 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[319 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[31a 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[31b 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[31c 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[31d 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[31e 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[31f 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[320 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[321 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[322 10-08 01:54:48.27 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[323 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[324 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[325 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[326 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[327 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[328 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[329 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[32a 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[32b 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[32c 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[32d 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[32e 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[32f 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[330 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[331 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[332 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[333 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[334 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.11:43996: rpc error: code = Canceled desc = context canceled -[335 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[336 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.11:43994 because channel businesschannel not found -[337 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:43994 -[338 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:43994 -[339 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[33a 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[33b 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[33c 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[33d 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[33e 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[33f 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[340 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[341 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[342 10-08 01:54:48.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[343 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[345 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[346 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[347 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[348 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[349 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[34a 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[34b 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[34c 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[34d 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[34e 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[34f 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[350 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[351 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[352 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[353 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[354 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[355 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[356 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[357 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[358 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[359 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[35a 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[35b 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[35c 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[35d 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[35e 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[35f 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[360 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[344 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:43994: rpc error: code = Canceled desc = context canceled -[362 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[363 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[364 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[365 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[366 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[367 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[368 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[361 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[369 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[36a 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[36b 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[36c 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[36d 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[36e 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[36f 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[370 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[371 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[372 10-08 01:54:48.29 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[373 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[374 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[375 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[376 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[377 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[379 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[37a 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:43998 -[37b 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:43998 -[378 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[37c 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[37d 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[37e 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[37f 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[380 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[381 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[382 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[383 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[384 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[385 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[386 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[387 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[388 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[389 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[38a 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[38b 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[38c 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[38d 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[38e 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[38f 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[390 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[391 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[392 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[393 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[394 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[395 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[396 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[397 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate -> DEBU fileLedgerFactory will GetOrCreate businesschannel -[398 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -[399 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -[39a 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -[39b 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/util] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -[39c 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -[39d 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -[39e 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[39f 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[3a0 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -[3a1 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -[3a2 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.Append -> DEBU Add block to ledger: header:<6:39 0:"\x00" } 0:4 4:5 24850204:33662351564 226196:/* unknown wire type 7 */ 179218 { 0:1066172015 1853:/* unknown wire type 7 */ 1090:/* unexpected EOF */ 9:/* unexpected EOF */ 1865:/* unexpected EOF */ /* unexpected EOF */ >data:<1:"\n\xb7\x06\n\x1b\b\x01\x1a\x06\b\xe8\x8a\xe6\xce\x05\"\x0fbusinesschannel\x12\x97\x06\n\xfa\x05\n\nOrdererMSP\x12\xeb\x05-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END -----\n\x12\x18\v\x10n\xda\xc6֥\xd0\xdcl\xe6\x96ze\xe7\xf2\x85/\x15o\xa6ik\xf8\x12\xc8X\n\xf3E\b\x01\x12\xeeE\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins*\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins\x12\xd0+\n\vApplication\x12\xc0+\b\x01\x12\xa2\x15\n\aOrg1MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins*\x06Admins\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\x12\xcf\x12\n\x83\x12\n\xdf\x06\n\x1b\b\x02\x1a\x06\b\xe8\x8a\xe6\xce\x05\"\x0fbusinesschannel\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18Di>\xe0\x9d\xb2\xf1\x8c\xd6I\x9f<\xeb\x9bo\x94ul\xe3N%LG\xde\x12\x9e\v\n\x8e\x04\n\x0fbusinesschannel\x12O\x12)\n\vApplication\x12\x1a\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1a\xc7\x01\x12\xa0\x01\n\vApplication\x12\x90\x01\b\x01\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium*\xdf\x01\n\x0erscc_seed_data\x12\xcc\x01\x12\xc7\x01\x1aM\n\rQSCC.Example1\x12<\x12\x1d\n\x1b/Channel/Application/Admins\x1a\x1b/Channel/Application/Admins\x1a9\n\rQSCC.Example2\x12(\x12\t\n\aExample\x1a\x1b/Channel/Application/Admins\"\x1e\n\aExample\x12\x13\x12\b\b\x01\x12\x04\x12\x02\x12\x00\x1a\aExample*\x1b/Channel/Application/Admins\x18\x01\x12\x8a\a\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\x9eG\x97~\x06\xb5X\x01\xd5&\x12?\xe9̥\x00\xcc\b\xc3\xf2Y\xc7|\xfd\x12F0D\x02 _\xbf\xd4\r/{ڢ\x8dC\xbc\xd5\xf3\xfb\xdfb\xad\x9b\x9d\xde6\x06\n\xa0\u007f\xef\x82)'\x1eW\xc4\x02 sWJ\u0590M\x89Au\xa710\x9f\xb0\xb2\xd6Ÿb\xac\x16\xf3\xdc\x190K\xbe\x97y\xe9\x8aH\x12G0E\x02!\x00\xc9X-N;L\xb5\x83\xaa\fc~\xa3\xeb\x8b\u007f\xa6\xf2\x1a.\u007f>S\x03[R\x02\x8b\xa6\x96\x8eF\x02 \x1ar\x05\x1f\x059fR\x9f\xa5\xa4\xf5V\x91\x1b\x19\xac\xe7\xf9\x93\xabde\xe5\x8d\xde̪Y\xd1\xe2t" 2:"0D\x02 S\a\xef\xa8CgrӬ#\\_\x11c\xff\xa8h\xdf\xdcұ\x92\xdd\xef\x92h\xa7膭:E\x02 /_@]\xa9\xdf3\xc3\\\xa9\x9eibw\v\x01Y\xa7\xbc8\x85\xff}vĈu#b\xd1#8" >metadata: -[3a3 10-08 01:54:48.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr -[3a4 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x26, 0xfc, 0x72, 0x8a, 0xf0, 0xa3, 0x17, 0x3e, 0x6d, 0xde, 0x6b, 0x18, 0x9, 0xe0, 0x83, 0x1a, 0xef, 0x35, 0x3a, 0xec, 0xd, 0xa, 0xf0, 0x2d, 0xb7, 0x28, 0xb1, 0x75, 0x97, 0x6e, 0xac, 0xa5} txOffsets= -txId= locPointer=offset=38, bytesLength=12242 -] -[3a5 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12285], isChainEmpty=[false], lastBlockNumber=[0] -[3a6 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[3a7 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12285], Going to peek [8] bytes -[3a8 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12283], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[3a9 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12283] read from file [0] -[3aa 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) -[3ab 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.HandleChain.newChain -> INFO [channel: businesschannel] Starting chain with last persisted offset -3 and last recorded block 0 -[3ac 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -[3ad 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -[3ae 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> DEBU startThread() begin -[3af 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[3b1 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[3b2 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[3b3 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[3b4 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...2231A27E4B0BD7017B5223F57FDAA67A -[3b0 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel -> INFO [channel: businesschannel] Setting up the producer for this channel... -[3b5 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 97ACFE9D68C5016E9788C6BA54FC94A113D5B1679D05BECA580417659169122C -[3b6 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel.retry.try -> DEBU [channel: businesschannel] Connecting to the Kafka cluster -[3b7 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient -> DEBU Initializing new client -[3b8 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[3b9 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[3bb 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[3bc 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -[3bd 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[3be 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[3bf 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...2231A27E4B0BD7017B5223F57FDAA67A -[3c0 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 3130D308C4318B8F719FFE8F35EF4EDBE19F5AD69EDC1D4B294E11A96A0378E2 -[3ba 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.any.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[3c1 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for all topics from broker kafka3:9092 -[3c3 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka3:9092 (unregistered) -[3c2 10-08 01:54:48.31 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] commitBlock.Append.Append -> DEBU Add block to ledger: header:<6:71 0:"\x01" } 4:4335 7:/* unexpected EOF */ 10 { 10 { 1831:/* unknown wire type 7 */ 142695:/* unknown wire type 6 */ 15:/* unknown wire type 6 */ 27978 { 6:/* unknown wire type 6 */ 220158:1000744874119507296 11:/* unexpected EOF */ 4:86 0:/* unknown wire type 6 */ 8:64 551:7163444250426400391 70479:49 2020:/* unexpected EOF */ 1 { 26:/* unknown wire type 7 */ 15 { 10:/* unexpected EOF */ 2046:/* unexpected EOF */ 250475:/* unexpected EOF */ >data:<1:"\n\xb3\x06\n\x17\b\x04\x1a\x06\b\xe8\x8a\xe6\xce\x05\"\vtestchainid\x12\x97\x06\n\xfa\x05\n\nOrdererMSP\x12\xeb\x05-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END -----\n\x12\x18\x0eU\x13(\x97\x9c\x87ͅ\xae\x91\xd0-v\x85\x85\xb5\xae_$QEm:\x12\xd0_\n\x85_\n\xb7\x06\n\x1b\b\x01\x1a\x06\b\xe8\x8a\xe6\xce\x05\"\x0fbusinesschannel\x12\x97\x06\n\xfa\x05\n\nOrdererMSP\x12\xeb\x05-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END -----\n\x12\x18\v\x10n\xda\xc6֥\xd0\xdcl\xe6\x96ze\xe7\xf2\x85/\x15o\xa6ik\xf8\x12\xc8X\n\xf3E\b\x01\x12\xeeE\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins*\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins\x12\xd0+\n\vApplication\x12\xc0+\b\x01\x12\xa2\x15\n\aOrg1MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins*\x06Admins\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\x12\xcf\x12\n\x83\x12\n\xdf\x06\n\x1b\b\x02\x1a\x06\b\xe8\x8a\xe6\xce\x05\"\x0fbusinesschannel\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18Di>\xe0\x9d\xb2\xf1\x8c\xd6I\x9f<\xeb\x9bo\x94ul\xe3N%LG\xde\x12\x9e\v\n\x8e\x04\n\x0fbusinesschannel\x12O\x12)\n\vApplication\x12\x1a\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1a\xc7\x01\x12\xa0\x01\n\vApplication\x12\x90\x01\b\x01\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium*\xdf\x01\n\x0erscc_seed_data\x12\xcc\x01\x12\xc7\x01\x1aM\n\rQSCC.Example1\x12<\x12\x1d\n\x1b/Channel/Application/Admins\x1a\x1b/Channel/Application/Admins\x1a9\n\rQSCC.Example2\x12(\x12\t\n\aExample\x1a\x1b/Channel/Application/Admins\"\x1e\n\aExample\x12\x13\x12\b\b\x01\x12\x04\x12\x02\x12\x00\x1a\aExample*\x1b/Channel/Application/Admins\x18\x01\x12\x8a\a\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\x9eG\x97~\x06\xb5X\x01\xd5&\x12?\xe9̥\x00\xcc\b\xc3\xf2Y\xc7|\xfd\x12F0D\x02 _\xbf\xd4\r/{ڢ\x8dC\xbc\xd5\xf3\xfb\xdfb\xad\x9b\x9d\xde6\x06\n\xa0\u007f\xef\x82)'\x1eW\xc4\x02 sWJ\u0590M\x89Au\xa710\x9f\xb0\xb2\xd6Ÿb\xac\x16\xf3\xdc\x190K\xbe\x97y\xe9\x8aH\x12G0E\x02!\x00\xc9X-N;L\xb5\x83\xaa\fc~\xa3\xeb\x8b\u007f\xa6\xf2\x1a.\u007f>S\x03[R\x02\x8b\xa6\x96\x8eF\x02 \x1ar\x05\x1f\x059fR\x9f\xa5\xa4\xf5V\x91\x1b\x19\xac\xe7\xf9\x93\xabde\xe5\x8d\xde̪Y\xd1\xe2t\x12F0D\x02 S\a\xef\xa8CgrӬ#\\_\x11c\xff\xa8h\xdf\xdcұ\x92\xdd\xef\x92h\xa7膭:E\x02 /_@]\xa9\xdf3\xc3\\\xa9\x9eibw\v\x01Y\xa7\xbc8\x85\xff}vĈu#b\xd1#8" 2:"0D\x02 =?\x99\x9d;\xdbb1`y'[\xb5a\xfaF\xde\xc5\xca\xc0\x8c+\x11A\x87\x0fx\xb9\xf2;\xc1\xdf\x02 \x16\x9c\xaf5d\x9e\x18\x8f\"}$_\xceO\xbd\x10\xeby\x90/\xb3V\xf5\xb7\x17Y\xe2\x03BI.\x90" >metadata:$w#\336\233\200\006\002 \0276HG\372R\304I4\213\211\020\272%.\336\302\364\006\237\234\264\261\266\n\344|R\372)F'" metadata:"\022\343\006\n\227\006\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END -----\n\022\030uN\206\235wJfr=\220U\312c\004\304\n\347\333b\356\316\224&g\022G0E\002!\000\235Q4\271/\255=:T\203\213\246\276\314\312\362Y\344C\267\232\236\201\\\370\307\233\236\310\374\337\265\002 \031\255\223\375cU\325\211\327s\023\341\354\033\207\313\346\241:&\257\005\255\002m5\215\014\326\357\010\244" metadata:"" metadata:"\n\002\010\001" > -[3c4 10-08 01:54:48.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr -[3c5 10-08 01:54:48.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xbc, 0x60, 0x60, 0x29, 0xb0, 0xa8, 0xc, 0xa4, 0xa5, 0xe5, 0xec, 0xa5, 0x87, 0xd6, 0xfd, 0x77, 0xad, 0x5a, 0xe4, 0xce, 0x81, 0x75, 0x87, 0x72, 0x3b, 0x68, 0x22, 0x2b, 0x3d, 0xfd, 0x53, 0x37} txOffsets= -txId= locPointer=offset=70, bytesLength=13142 -] -[3c6 10-08 01:54:48.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24126], isChainEmpty=[false], lastBlockNumber=[1] -[3c7 10-08 01:54:48.32 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -[3c8 10-08 01:54:48.35 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #2 at kafka2:9092 -[3c9 10-08 01:54:48.35 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #1 at kafka1:9092 -[3ca 10-08 01:54:48.35 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #3 at kafka3:9092 -[3cb 10-08 01:54:48.35 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #0 at kafka0:9092 -[3cc 10-08 01:54:48.35 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient -> DEBU Successfully initialized new client -[3cd 10-08 01:54:48.36 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel.retry.try -> DEBU [channel: businesschannel] Error is nil, breaking the retry loop -[3ce 10-08 01:54:48.36 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] Producer set up successfully -[3cf 10-08 01:54:48.36 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage -> INFO [channel: businesschannel] About to post the CONNECT message... -[3d0 10-08 01:54:48.36 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: businesschannel] Attempting to post the CONNECT message... -[3d1 10-08 01:54:48.36 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [businesschannel] from broker kafka3:9092 -[3d2 10-08 01:54:48.50 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata found some partitions to be leaderless -[3d3 10-08 01:54:48.50 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1 -> DEBU client/metadata retrying after 250ms... (3 attempts remaining) -[3d4 10-08 01:54:48.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Rejecting deliver request for 172.18.0.11:43998 because of consenter error -[3d5 10-08 01:54:48.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:43998 -[3d6 10-08 01:54:48.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:43998 -[3d7 10-08 01:54:48.50 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:43998: rpc error: code = Canceled desc = context canceled -[3d8 10-08 01:54:48.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[3d9 10-08 01:54:48.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[3da 10-08 01:54:48.52 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:44002 -[3db 10-08 01:54:48.52 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44002 -[3dc 10-08 01:54:48.72 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Rejecting deliver request for 172.18.0.11:44002 because of consenter error -[3dd 10-08 01:54:48.72 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:44002 -[3de 10-08 01:54:48.72 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44002 -[3df 10-08 01:54:48.72 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:44002: rpc error: code = Canceled desc = context canceled -[3e0 10-08 01:54:48.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[3e1 10-08 01:54:48.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[3e2 10-08 01:54:48.73 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:44006 -[3e3 10-08 01:54:48.73 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44006 -[3e4 10-08 01:54:48.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [businesschannel] from broker kafka3:9092 -[3e5 10-08 01:54:48.76 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.Leader.cachedLeader.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[3e6 10-08 01:54:48.76 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/0 starting up -[3e7 10-08 01:54:48.76 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/0 state change to [open] on businesschannel/0 -[3e8 10-08 01:54:48.76 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka0:9092 (registered as #0) -[3e9 10-08 01:54:48.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Rejecting deliver request for 172.18.0.11:44006 because of consenter error -[3ea 10-08 01:54:48.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:44006 -[3eb 10-08 01:54:48.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44006 -[3ec 10-08 01:54:48.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:44006: rpc error: code = Canceled desc = context canceled -[3ed 10-08 01:54:48.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[3ee 10-08 01:54:48.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[3ef 10-08 01:54:48.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:44012 -[3f0 10-08 01:54:48.94 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44012 -[3f1 10-08 01:54:49.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Rejecting deliver request for 172.18.0.11:44012 because of consenter error -[3f2 10-08 01:54:49.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:44012 -[3f3 10-08 01:54:49.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44012 -[3f4 10-08 01:54:49.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:44012: rpc error: code = Canceled desc = context canceled -[3f5 10-08 01:54:49.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[3f6 10-08 01:54:49.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[3f7 10-08 01:54:49.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:44014 -[3f8 10-08 01:54:49.16 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44014 -[3f9 10-08 01:54:49.36 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Rejecting deliver request for 172.18.0.11:44014 because of consenter error -[3fa 10-08 01:54:49.36 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:44014 -[3fb 10-08 01:54:49.36 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44014 -[3fc 10-08 01:54:49.37 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:44014: rpc error: code = Canceled desc = context canceled -[3fd 10-08 01:54:49.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[3fe 10-08 01:54:49.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[3ff 10-08 01:54:49.37 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:44016 -[400 10-08 01:54:49.37 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44016 -[401 10-08 01:54:49.58 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Rejecting deliver request for 172.18.0.11:44016 because of consenter error -[402 10-08 01:54:49.58 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:44016 -[403 10-08 01:54:49.58 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44016 -[404 10-08 01:54:49.58 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:44016: rpc error: code = Canceled desc = context canceled -[405 10-08 01:54:49.58 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[406 10-08 01:54:49.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[407 10-08 01:54:49.60 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:44018 -[408 10-08 01:54:49.60 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44018 -[409 10-08 01:54:49.73 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: businesschannel] Error is nil, breaking the retry loop -[40a 10-08 01:54:49.73 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] CONNECT message posted successfully -[40b 10-08 01:54:49.73 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel -> INFO [channel: businesschannel] Setting up the parent consumer for this channel... -[40c 10-08 01:54:49.73 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel.retry.try -> DEBU [channel: businesschannel] Connecting to the Kafka cluster -[40d 10-08 01:54:49.73 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient -> DEBU Initializing new client -[40e 10-08 01:54:49.73 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[40f 10-08 01:54:49.73 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.any.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[410 10-08 01:54:49.73 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for all topics from broker kafka0:9092 -[411 10-08 01:54:49.73 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka0:9092 (unregistered) -[412 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #2 at kafka2:9092 -[413 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #1 at kafka1:9092 -[414 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #3 at kafka3:9092 -[415 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #0 at kafka0:9092 -[416 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient -> DEBU Successfully initialized new client -[417 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel.retry.try -> DEBU [channel: businesschannel] Error is nil, breaking the retry loop -[418 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] Parent consumer set up successfully -[419 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> DEBU [channel: businesschannel] chain.lastOffsetPersisted=-3 -[41a 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel -> INFO [channel: businesschannel] Setting up the channel consumer for this channel (start offset: -2)... -[41b 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel.retry.try -> DEBU [channel: businesschannel] Connecting to the Kafka cluster -[41c 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupChannelConsumerForChannel.retry.try.func1.ConsumePartition.chooseStartingOffset.GetOffset.getOffset.Leader.cachedLeader.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[41d 10-08 01:54:49.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka0:9092 (registered as #0) -[41e 10-08 01:54:49.77 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel.retry.try -> DEBU [channel: businesschannel] Error is nil, breaking the retry loop -[41f 10-08 01:54:49.77 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] Channel consumer set up successfully -[420 10-08 01:54:49.77 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] Start phase completed successfully -[421 10-08 01:54:49.77 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] subscriptionConsumer)-fm.subscriptionConsumer.updateSubscriptions -> DEBU consumer/broker/0 added subscription to businesschannel/0 -[422 10-08 01:54:49.78 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 0. Inspecting type... -[423 10-08 01:54:49.78 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processConnect -> DEBU [channel: businesschannel] It's a connect message - ignoring -[424 10-08 01:54:49.79 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[425 10-08 01:54:49.79 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 -[426 10-08 01:54:49.79 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 == -[427 10-08 01:54:49.79 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 -[428 10-08 01:54:49.79 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 == -[429 10-08 01:54:49.79 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 -[42a 10-08 01:54:49.80 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[42b 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e5b0 gate 1507427689801026736 evaluation starts -[42c 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5b0 signed by 0 principal evaluation starts (used [false]) -[42d 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5b0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[42e 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[42f 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5b0 principal evaluation fails -[430 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e5b0 gate 1507427689801026736 evaluation fails -[431 10-08 01:54:49.80 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 -[432 10-08 01:54:49.80 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 -[433 10-08 01:54:49.80 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 ] -[434 10-08 01:54:49.80 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 -[435 10-08 01:54:49.80 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 -[436 10-08 01:54:49.80 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 == -[437 10-08 01:54:49.80 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 -[438 10-08 01:54:49.80 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 == -[439 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e5c0 gate 1507427689802386216 evaluation starts -[43a 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5c0 signed by 0 principal evaluation starts (used [false]) -[43b 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[43c 10-08 01:54:49.80 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 -[43d 10-08 01:54:49.80 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 -[43e 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5c0 principal matched by identity 0 -[43f 10-08 01:54:49.80 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 06 6d f4 11 c8 87 78 6d 3c 65 02 74 5e 13 01 |*.m....xm DEBU Verify: sig = 00000000 30 45 02 21 00 a4 c8 fb b9 7c 89 72 e4 30 ae a2 |0E.!.....|.r.0..| -00000010 51 3c 37 d3 d0 93 18 a7 3f b8 c8 49 d8 4a a1 9f |Q<7.....?..I.J..| -00000020 79 d9 41 1e 36 02 20 67 4e b8 91 5e 16 fd 12 45 |y.A.6. gN..^...E| -00000030 0d 23 bc 6e af 46 3e 1b 7d 66 44 d5 40 f3 0e bb |.#.n.F>.}fD.@...| -00000040 4d 61 bb 92 dd f1 cf |Ma.....| -[441 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e5c0 principal evaluation succeeds for identity 0 -[442 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e5c0 gate 1507427689802386216 evaluation succeeds -[443 10-08 01:54:49.80 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 -[444 10-08 01:54:49.80 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 -[445 10-08 01:54:49.80 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 -[446 10-08 01:54:49.80 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 -[447 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[448 10-08 01:54:49.80 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 -[449 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42041b680) start: > stop: > from 172.18.0.11:44018 -[44a 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[44b 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12285], Going to peek [8] bytes -[44c 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12283], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[44d 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12283] read from file [0] -[44e 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42041b680) for 172.18.0.11:44018 -[44f 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.11:44018 for (0xc42041b680) -[450 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:44018 -[451 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44018 -[452 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:44018: rpc error: code = Canceled desc = context canceled -[453 10-08 01:54:49.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[454 10-08 01:54:54.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[455 10-08 01:54:54.09 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:44030 -[456 10-08 01:54:54.09 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:44030 -[457 10-08 01:54:54.11 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[458 10-08 01:54:54.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.11:44032 -[459 10-08 01:54:54.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.11:44032 -[45a 10-08 01:54:54.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 -[45b 10-08 01:54:54.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 == -[45c 10-08 01:54:54.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 -[45d 10-08 01:54:54.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 == -[45e 10-08 01:54:54.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 -[45f 10-08 01:54:54.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 == -[460 10-08 01:54:54.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 1507427694116786072 evaluation starts -[461 10-08 01:54:54.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]) -[462 10-08 01:54:54.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 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[463 10-08 01:54:54.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) -[464 10-08 01:54:54.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 -[465 10-08 01:54:54.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 1507427694116786072 evaluation fails -[466 10-08 01:54:54.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 -[467 10-08 01:54:54.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 -[468 10-08 01:54:54.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 ] -[469 10-08 01:54:54.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 -[46a 10-08 01:54:54.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 -[46b 10-08 01:54:54.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 == -[46c 10-08 01:54:54.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 -[46d 10-08 01:54:54.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 == -[46e 10-08 01:54:54.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 0xc42000e128 gate 1507427694117872758 evaluation starts -[46f 10-08 01:54:54.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 0xc42000e128 signed by 0 principal evaluation starts (used [false]) -[470 10-08 01:54:54.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 0xc42000e128 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[471 10-08 01:54:54.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 -[472 10-08 01:54:54.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.Validate -> DEBU MSP Org1MSP validating identity -[473 10-08 01:54:54.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 0xc42000e128 principal matched by identity 0 -[474 10-08 01:54:54.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.Verify -> DEBU Verify: digest = 00000000 ab ea 54 ab 84 98 5f 15 4a 68 85 9b 91 01 d4 ae |..T..._.Jh......| -00000010 41 79 18 67 97 ab a6 d0 23 a2 92 d9 d9 dc d3 4a |Ay.g....#......J| -[475 10-08 01:54:54.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.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 fa 13 ea 84 8c 44 bc d6 a9 84 90 |0E.!......D.....| -00000010 55 47 53 79 0c 09 cb 44 31 00 77 58 f3 fe 86 6f |UGSy...D1.wX...o| -00000020 f2 57 e8 d3 1e 02 20 26 e9 af e7 57 c7 af 80 c3 |.W.... &...W....| -00000030 f8 be 90 d0 24 4d b6 f0 4b 48 73 cf 30 12 a7 2e |....$M..KHs.0...| -00000040 2e 9f 0b 0b ea 07 88 |.......| -[476 10-08 01:54:54.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 0xc42000e128 principal evaluation succeeds for identity 0 -[477 10-08 01:54:54.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 0xc42000e128 gate 1507427694117872758 evaluation succeeds -[478 10-08 01:54:54.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 satisfies policy /Channel/Application/Org1MSP/Writers -[479 10-08 01:54:54.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/Org1MSP/Writers -[47a 10-08 01:54:54.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 satisfies policy /Channel/Application/Writers -[47b 10-08 01:54:54.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/Application/Writers -[47c 10-08 01:54:54.11 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 -[47d 10-08 01:54:54.11 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 -[47e 10-08 01:54:54.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: [Groups] /Channel -[47f 10-08 01:54:54.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: [Groups] /Channel/Application -[480 10-08 01:54:54.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: [Groups] /Channel/Application/Org1MSP -[481 10-08 01:54:54.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: [Values] /Channel/Application/Org1MSP/MSP -[482 10-08 01:54:54.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 -[483 10-08 01:54:54.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 -[484 10-08 01:54:54.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 -[485 10-08 01:54:54.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: [Groups] /Channel -[486 10-08 01:54:54.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: [Groups] /Channel/Application -[487 10-08 01:54:54.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: [Groups] /Channel/Application/Org1MSP -[488 10-08 01:54:54.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: [Values] /Channel/Application/Org1MSP/MSP -[489 10-08 01:54:54.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: [Values] /Channel/Application/Org1MSP/AnchorPeers -[48a 10-08 01:54:54.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 -[48b 10-08 01:54:54.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 -[48c 10-08 01:54:54.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 -[48d 10-08 01:54:54.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: [Groups] /Channel/Application/Org1MSP -[48e 10-08 01:54:54.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 -[48f 10-08 01:54:54.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] -[490 10-08 01:54:54.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 -[491 10-08 01:54:54.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 -[492 10-08 01:54:54.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 [] -[493 10-08 01:54:54.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 -[494 10-08 01:54:54.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 -[495 10-08 01:54:54.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] -[496 10-08 01:54:54.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 -[497 10-08 01:54:54.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 -[498 10-08 01:54:54.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 [] -[499 10-08 01:54:54.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 == -[49a 10-08 01:54:54.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 0xc42000e7c8 gate 1507427694122242474 evaluation starts -[49b 10-08 01:54:54.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 0xc42000e7c8 signed by 0 principal evaluation starts (used [false]) -[49c 10-08 01:54:54.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 0xc42000e7c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[49d 10-08 01:54:54.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 -[49e 10-08 01:54:54.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 0xc42000e7c8 principal matched by identity 0 -[49f 10-08 01:54:54.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 4f d1 1e fd 6e 6e 6c b2 3d 55 15 fd a5 5b 38 78 |O...nnl.=U...[8x| -00000010 97 96 a4 a1 45 39 99 f5 37 9b 00 f0 5f c5 52 9b |....E9..7..._.R.| -[4a0 10-08 01:54:54.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 01 4a f1 61 66 0a 2d 0d 62 85 0a ca |0D. .J.af.-.b...| -00000010 ca 48 f5 c4 70 5c ce f8 16 f2 76 1d 05 16 01 95 |.H..p\....v.....| -00000020 58 71 f7 46 02 20 3c 67 6d 9b f0 cc bb c0 f9 ea |Xq.F. DEBU 0xc42000e7c8 principal evaluation succeeds for identity 0 -[4a2 10-08 01:54:54.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 0xc42000e7c8 gate 1507427694122242474 evaluation succeeds -[4a3 10-08 01:54:54.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 -[4a4 10-08 01:54:54.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 -[4a5 10-08 01:54:54.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: [Values] /Channel/Application/Org1MSP/AnchorPeers -[4a6 10-08 01:54:54.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" -[4a7 10-08 01:54:54.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" -[4a8 10-08 01:54:54.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" -[4a9 10-08 01:54:54.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" -[4aa 10-08 01:54:54.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" -[4ab 10-08 01:54:54.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" -[4ac 10-08 01:54:54.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" -[4ad 10-08 01:54:54.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" -[4ae 10-08 01:54:54.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" -[4af 10-08 01:54:54.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" -[4b0 10-08 01:54:54.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 -[4b1 10-08 01:54:54.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 -[4b2 10-08 01:54:54.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 -[4b3 10-08 01:54:54.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" -[4b4 10-08 01:54:54.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" -[4b5 10-08 01:54:54.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" -[4b6 10-08 01:54:54.12 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" -[4b7 10-08 01:54:54.12 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" -[4b8 10-08 01:54:54.12 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" -[4b9 10-08 01:54:54.12 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 -[4ba 10-08 01:54:54.12 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 -[4bb 10-08 01:54:54.12 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 -[4bc 10-08 01:54:54.12 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 -[4bd 10-08 01:54:54.12 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 -[4be 10-08 01:54:54.12 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 -[4bf 10-08 01:54:54.12 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 -[4c0 10-08 01:54:54.12 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 -[4c1 10-08 01:54:54.12 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 -[4c2 10-08 01:54:54.12 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 -[4c3 10-08 01:54:54.12 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 -[4c4 10-08 01:54:54.12 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 -[4c5 10-08 01:54:54.12 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 -[4c6 10-08 01:54:54.12 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 -[4c7 10-08 01:54:54.12 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 -[4c8 10-08 01:54:54.12 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 -[4c9 10-08 01:54:54.12 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4ca 10-08 01:54:54.12 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 -[4cb 10-08 01:54:54.12 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 -[4cc 10-08 01:54:54.12 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[4cd 10-08 01:54:54.12 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[4ce 10-08 01:54:54.12 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[4cf 10-08 01:54:54.12 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[4d0 10-08 01:54:54.12 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 -[4d1 10-08 01:54:54.12 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 -[4d2 10-08 01:54:54.12 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 -[4d3 10-08 01:54:54.12 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 -[4d4 10-08 01:54:54.12 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 -[4d5 10-08 01:54:54.12 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 -[4d6 10-08 01:54:54.12 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 -[4d7 10-08 01:54:54.12 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 -[4d8 10-08 01:54:54.12 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4d9 10-08 01:54:54.12 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 -[4da 10-08 01:54:54.12 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 -[4db 10-08 01:54:54.12 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[4dc 10-08 01:54:54.12 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[4dd 10-08 01:54:54.12 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[4de 10-08 01:54:54.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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[4df 10-08 01:54:54.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 -[4e0 10-08 01:54:54.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 -[4e1 10-08 01:54:54.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 -[4e2 10-08 01:54:54.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 -[4e3 10-08 01:54:54.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: -[4e4 10-08 01:54:54.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 -[4e5 10-08 01:54:54.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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4e6 10-08 01:54:54.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 -[4e7 10-08 01:54:54.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 -[4e8 10-08 01:54:54.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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[4e9 10-08 01:54:54.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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[4ea 10-08 01:54:54.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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[4eb 10-08 01:54:54.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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[4ec 10-08 01:54:54.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) -[4ed 10-08 01:54:54.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 -[4ee 10-08 01:54:54.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 -[4ef 10-08 01:54:54.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 -[4f0 10-08 01:54:54.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 -[4f1 10-08 01:54:54.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 -[4f2 10-08 01:54:54.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 -[4f3 10-08 01:54:54.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 -[4f4 10-08 01:54:54.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 -[4f5 10-08 01:54:54.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 -[4f6 10-08 01:54:54.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/Application/Org2MSP -[4f7 10-08 01:54:54.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 -[4f8 10-08 01:54:54.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/Org1MSP -[4f9 10-08 01:54:54.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/Org1MSP -[4fa 10-08 01:54:54.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/Application/Org1MSP -[4fb 10-08 01:54:54.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 -[4fc 10-08 01:54:54.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/Application -[4fd 10-08 01:54:54.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 -[4fe 10-08 01:54:54.13 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 -[4ff 10-08 01:54:54.13 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 -[500 10-08 01:54:54.13 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 -[501 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[502 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[503 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[504 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[505 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[506 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[507 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[508 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[509 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[50a 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[50b 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[50c 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[50d 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[50e 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[50f 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[510 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[511 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[512 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[513 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[514 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[515 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[516 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[517 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[518 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[519 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[51a 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[51b 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[51c 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[51d 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[51e 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[51f 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[520 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[521 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[522 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[523 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[524 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[525 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[526 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[527 10-08 01:54:54.13 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' -[528 10-08 01:54:54.13 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' -[529 10-08 01:54:54.13 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] -[52a 10-08 01:54:54.13 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 -[52b 10-08 01:54:54.13 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 -[52c 10-08 01:54:54.13 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 [] -[52d 10-08 01:54:54.13 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 -[52e 10-08 01:54:54.13 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 -[52f 10-08 01:54:54.13 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' -[530 10-08 01:54:54.13 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' -[531 10-08 01:54:54.13 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' -[532 10-08 01:54:54.13 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] -[533 10-08 01:54:54.13 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 -[534 10-08 01:54:54.13 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 -[535 10-08 01:54:54.13 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 [] -[536 10-08 01:54:54.13 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 -[537 10-08 01:54:54.13 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' -[538 10-08 01:54:54.13 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 -[539 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[53a 10-08 01:54:54.13 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 -[53b 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[53c 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AB7060A1B08011A0608EE8AE6CE0522...F04B4873CF3012A72E2E9F0B0BEA0788 -[53d 10-08 01:54:54.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 458B4EA9E3B5CEDD5A1FBFB36BCBA5B3DFEEDE7A86304962C508407533EBE467 -[53e 10-08 01:54:54.13 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 == -[53f 10-08 01:54:54.13 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 -[540 10-08 01:54:54.13 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 == -[541 10-08 01:54:54.13 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 -[542 10-08 01:54:54.13 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 == -[543 10-08 01:54:54.13 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 -[544 10-08 01:54:54.13 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----- -MIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC -Wo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr -KJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC -xgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP ------END CERTIFICATE----- -[545 10-08 01:54:54.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 0xc42000f3a8 gate 1507427694140188716 evaluation starts -[546 10-08 01:54:54.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 0xc42000f3a8 signed by 0 principal evaluation starts (used [false]) -[547 10-08 01:54:54.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 0xc42000f3a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012eb052d2d2d2d2d424547494e202d2d2d2d2d0a4d4949434444434341624f6741774942416749524149523249436e69564f71416d6b2f76346a726f7a466377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a30444151634451674145465732366339464b4c38556a57303259706c487252527550575566436e7a44484158456a663768494a78635730384d430a576f357254537a3746685937776965684a4a39336376642b49646b77594e706347776f4265714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167325a714c67794e4a314f39632f7a56373162416753664737396a47720a4b4a38667273634332614d3743746b77436759494b6f5a497a6a3045417749445277417752414968414e693445306d326a416c77646b7376587a3047453157430a78674c384e6f306f35576d764f534c73332f6a4441683872496b4678716552484e69756c6d567a6c49394f4467745a37627143584c313377457779374f4a42500a2d2d2d2d2d454e44202d2d2d2d2d0a -[548 10-08 01:54:54.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 -[549 10-08 01:54:54.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 -[54a 10-08 01:54:54.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 0xc42000f3a8 principal matched by identity 0 -[54b 10-08 01:54:54.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 45 8b 4e a9 e3 b5 ce dd 5a 1f bf b3 6b cb a5 b3 |E.N.....Z...k...| -00000010 df ee de 7a 86 30 49 62 c5 08 40 75 33 eb e4 67 |...z.0Ib..@u3..g| -[54c 10-08 01:54:54.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 45 02 21 00 97 e6 1d 1e 5c d5 77 5c 61 d1 78 |0E.!.....\.w\a.x| -00000010 38 7d d0 d9 7d b5 aa f3 b3 65 06 ee d4 75 53 6d |8}..}....e...uSm| -00000020 fd 6e fc ff 44 02 20 34 57 72 14 bf 3b 2a 17 16 |.n..D. 4Wr..;*..| -00000030 f8 2b 29 5c 50 19 75 56 ba 86 45 5a 71 14 ba 3c |.+)\P.uV..EZq..<| -00000040 15 9f e3 ae 04 b9 77 |......w| -[54d 10-08 01:54:54.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 0xc42000f3a8 principal evaluation succeeds for identity 0 -[54e 10-08 01:54:54.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 0xc42000f3a8 gate 1507427694140188716 evaluation succeeds -[54f 10-08 01:54:54.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 -[550 10-08 01:54:54.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 -[551 10-08 01:54:54.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 -[552 10-08 01:54:54.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 -[553 10-08 01:54:54.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 -[554 10-08 01:54:54.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 -[555 10-08 01:54:54.14 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Configure.Configure.enqueue -> DEBU [channel: businesschannel] Enqueueing envelope... -[556 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 1. Inspecting type... -[557 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU [channel: businesschannel] Processing regular Kafka message of type CONFIG -[558 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2 -> DEBU [channel: businesschannel] Received config message -[559 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2 -> DEBU [channel: businesschannel] Creating isolated block for config message -[55a 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[55b 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[55c 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[55d 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[55e 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[55f 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[560 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[561 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[562 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[563 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[564 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[565 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[566 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[567 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[568 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[569 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Groups] /Channel/Application/Org1MSP -[56a 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[56b 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[56c 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[56d 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[56e 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[56f 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[570 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[571 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -[572 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[573 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[574 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -[575 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[576 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000f9c0 gate 1507427694167498992 evaluation starts -[577 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000f9c0 signed by 0 principal evaluation starts (used [false]) -[578 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000f9c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[579 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[57a 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000f9c0 principal matched by identity 0 -[57b 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 4f d1 1e fd 6e 6e 6c b2 3d 55 15 fd a5 5b 38 78 |O...nnl.=U...[8x| -00000010 97 96 a4 a1 45 39 99 f5 37 9b 00 f0 5f c5 52 9b |....E9..7..._.R.| -[57c 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 01 4a f1 61 66 0a 2d 0d 62 85 0a ca |0D. .J.af.-.b...| -00000010 ca 48 f5 c4 70 5c ce f8 16 f2 76 1d 05 16 01 95 |.H..p\....v.....| -00000020 58 71 f7 46 02 20 3c 67 6d 9b f0 cc bb c0 f9 ea |Xq.F. DEBU [channel: businesschannel] Envelope enqueued successfully -[57f 10-08 01:54:54.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 CONFIG_UPDATE from 172.18.0.11:44032 -[57d 10-08 01:54:54.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000f9c0 principal evaluation succeeds for identity 0 -[580 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000f9c0 gate 1507427694167498992 evaluation succeeds -[581 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[582 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.11:44032: rpc error: code = Canceled desc = context canceled -[584 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[583 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[585 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Values] /Channel/Application/Org1MSP/AnchorPeers -[586 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[588 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[589 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[58a 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[58b 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[58c 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[58d 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[58e 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[58f 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[590 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[591 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[592 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[593 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[594 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[595 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[596 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[597 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[598 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[599 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[59a 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[59b 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[59c 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[587 10-08 01:54:54.17 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:44030: rpc error: code = Canceled desc = context canceled -[59d 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[59f 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[5a0 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[59e 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[5a1 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[5a2 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[5a3 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[5a4 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[5a5 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[5a6 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[5a7 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[5a8 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[5a9 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5aa 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[5ab 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5ac 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[5ad 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[5ae 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[5af 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[5b0 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[5b1 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[5b2 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[5b3 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[5b4 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[5b5 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[5b6 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[5b7 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5b8 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[5b9 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[5ba 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5bb 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[5bc 10-08 01:54:54.18 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[5bd 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[5be 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[5bf 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[5c0 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[5c1 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[5c2 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[5c3 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[5c4 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5c5 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[5c6 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[5c7 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5c8 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[5c9 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[5ca 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[5cb 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[5cc 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[5cd 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[5ce 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[5cf 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[5d0 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[5d1 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[5d2 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[5d3 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[5d4 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[5d5 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[5d6 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[5d7 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[5d8 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[5d9 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[5da 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[5db 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[5dc 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[5dd 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[5de 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[5df 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[5e0 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[5e1 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[5e2 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[5e3 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[5e4 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[5e5 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[5e6 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[5e7 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[5e8 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[5e9 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[5ea 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[5eb 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[5ec 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[5ed 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[5ee 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[5ef 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[5f0 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[5f1 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[5f2 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[5f3 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[5f4 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[5f5 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[5f6 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[5f7 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[5f8 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[5f9 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[5fa 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[5fb 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[5fc 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[5fd 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[5fe 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[5ff 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[600 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[601 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[602 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[603 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[604 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[605 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[606 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[607 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[608 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[609 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[60a 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[60b 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[60c 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[60d 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[60e 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[60f 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[610 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[611 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[612 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[613 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[614 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[615 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[616 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[617 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[618 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[619 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[61a 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[61b 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[61c 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[61d 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[61e 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...B070C0C29CA3CD05FCC954D07009AA1A -[61f 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C0F8F338A0D16E88A0B94E76CD7BD7413278DFC44DC3A9DA3584A033507D3C09 -[620 10-08 01:54:54.19 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 -[621 10-08 01:54:54.19 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[622 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[623 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[624 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[625 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[626 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010AFA050A0A4F7264657265724D53...B070C0C29CA3CD05FCC954D07009AA1A -[627 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: F478F259E4714E436ABF26961112D15D05EBDC6413DAFC4D60BC171E8C8E8828 -2017/10/08 01:54:54 proto: textWriter unindented too far -2017/10/08 01:54:54 proto: textWriter unindented too far -[628 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] commitBlock.Append.Append -> DEBU Add block to ledger: header:<6:71 0:"\x01" } 4:38 } 6102785:/* unexpected EOF */ 13:152595422 53308:6895 7:/* unexpected EOF */ 1:/* unexpected EOF */ 646:/* unknown wire type 7 */ 1878:9739913823450328727 1:/* unknown wire type 6 */ 231:/* unknown wire type 6 */ 3:/* unknown wire type 7 */ 12:3556522885 196274:/* unknown wire type 6 */ 2:"\xb0p\xc0\u009c\xa3\xcd\x05\xfc\xc9T\xd0p" 1:/* unexpected EOF */ 421:/* unexpected EOF */ >data:<1:"\n\xb7\x06\n\x1b\b\x01\x1a\x06\b\xee\x8a\xe6\xce\x05\"\x0fbusinesschannel\x12\x97\x06\n\xfa\x05\n\nOrdererMSP\x12\xeb\x05-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END -----\n\x12\x18̦\\d\xd9\xf6\xa0\x05y\x98\"\xb9_V|\xc09p\xf8¨\xb6\x92r\x12\xfcV\n\xadF\b\x02\x12\xa8F\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins*\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x12\x8a,\n\vApplication\x12\xfa+\b\x01\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\x12\xdc\x15\n\aOrg1MSP\x12\xd0\x15\b\x01\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\x1a6\n\vAnchorPeers\x12'\x12\x1d\n\x1b\n\x16peer0.org1.example.com\x10\x8b7\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins*\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\x12\xc9\x10\n\xfd\x0f\n\xdf\x06\n\x1b\b\x02\x1a\x06\b\xee\x8a\xe6\xce\x05\"\x0fbusinesschannel\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xe8\xf0\x99\xd06\xd1\x02\xbdJ\xf8\xd7\xe1\x94WrS\xbad7\xbf\xe8\xea\x0f\xfe\x12\x98\t\n\x88\x02\n\x0fbusinesschannel\x12W\x12U\n\vApplication\x12F\b\x01\x12:\n\aOrg1MSP\x12/\x1a\a\n\x03MSP\x12\x00\"\n\n\x06Admins\x12\x00\"\v\n\aReaders\x12\x00\"\v\n\aWriters\x12\x00*\x06Admins\x1a\x9b\x01\x12\x98\x01\n\vApplication\x12\x88\x01\b\x01\x12|\n\aOrg1MSP\x12q\b\x01\x1a\a\n\x03MSP\x12\x00\x1a6\n\vAnchorPeers\x12'\x12\x1d\n\x1b\n\x16peer0.org1.example.com\x10\x8b7\x1a\x06Admins\"\v\n\aReaders\x12\x00\"\v\n\aWriters\x12\x00\"\n\n\x06Admins\x12\x00*\x06Admins*\x06Admins\x12\x8a\a\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18P\xda\xdf\xc3k\x1b\xd3r2â:\b\x98C.ɳq\xc6\x04\xd6\x1fm\x12F0D\x02 \x01J\xf1af\n-\rb\x85\n\xca\xcaH\xf5\xc4p\\\xce\xf8\x16\xf2v\x1d\x05\x16\x01\x95Xq\xf7F\x02 metadata:^(U!E\345\225[\274\017=\236 \341\230\201\3715\334+\260\002 \002O\312e]R\257\361\216\031\304\254 \253i_\205?\360\3725/\014\014q$\320\300\352\236<(" metadata:"\n\002\010\001\022\343\006\n\227\006\n\372\005\n\nOrdererMSP\022\353\005-----BEGIN -----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END -----\n\022\030\345)\204\003\374\351\016\277\301\274av\027\377Gz^\272\203-/\322X\006\022G0E\002!\000\324\263\013\202\314\213\316\250\356\371\274!8\241\354\250(.\021\002\323!u\027\200Yv\257\303P\325+\002 d\211\025\313\363r\207e\312L-\235\210jK5t\322\320\300\320fS\362J\372`\254\211\364\357n" metadata:"" metadata:"\n\002\010\001" > -[629 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr -[62a 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xc, 0x6d, 0xd6, 0xf7, 0x11, 0x1d, 0x56, 0x4e, 0x82, 0xf9, 0x53, 0x4, 0xb4, 0xea, 0x48, 0x7c, 0xc, 0x45, 0xce, 0xf9, 0xd, 0x38, 0xa2, 0x99, 0xc3, 0xdc, 0x1f, 0x9b, 0x6d, 0xbf, 0x88, 0x9c} txOffsets= -txId= locPointer=offset=70, bytesLength=12039 -] -[62b 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26148], isChainEmpty=[false], lastBlockNumber=[1] -[62c 10-08 01:54:54.20 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -[62d 10-08 01:54:56.97 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[62e 10-08 01:54:56.97 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.10:40720 -[62f 10-08 01:54:56.97 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.10:40720 -[630 10-08 01:54:56.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 == -[631 10-08 01:54:56.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 -[632 10-08 01:54:56.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 == -[633 10-08 01:54:56.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 -[634 10-08 01:54:56.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 == -[635 10-08 01:54:56.98 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 -[636 10-08 01:54:56.98 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+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx -+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL -CpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E -PS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd -q9AUABhhA3EeNiD9 ------END CERTIFICATE----- -[637 10-08 01:54:56.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 0xc420124db8 gate 1507427696983319355 evaluation starts -[638 10-08 01:54:56.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 0xc420124db8 signed by 0 principal evaluation starts (used [false]) -[639 10-08 01:54:56.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 0xc420124db8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749514b6d726558544b4c38704e6a48745054616333596f44414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455755425a2f7a68353970306f74765a363737714b6437654779795631757558780a2b517445413247344f47366b7646314d4155433368786e43796150535665486b4e774c43764a42443756582b44484258614f487033714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672f6e304a35624c693937484c0a43705869714244696951323162376b3973796c614d4131303333617038337377436759494b6f5a497a6a30454177494452774177524149684149564275392f450a5053304f6a746d6f625566654b326b332b357863393854764852515a575041577a4c335a4168392b685139624733633358703257614870364767454e354866640a7139415541426868413345654e6944390a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[63a 10-08 01:54:56.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 0xc420124db8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[63b 10-08 01:54:56.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 0xc420124db8 principal evaluation fails -[63c 10-08 01:54:56.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 0xc420124db8 gate 1507427696983319355 evaluation fails -[63d 10-08 01:54:56.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 did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[63e 10-08 01:54:56.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 -[63f 10-08 01:54:56.98 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 ] -[640 10-08 01:54:56.98 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 -[641 10-08 01:54:56.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 -[642 10-08 01:54:56.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/Application/Readers == -[643 10-08 01:54:56.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 -[644 10-08 01:54:56.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/Application/Org2MSP/Readers == -[645 10-08 01:54:56.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 0xc420124dc8 gate 1507427696986381133 evaluation starts -[646 10-08 01:54:56.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 0xc420124dc8 signed by 0 principal evaluation starts (used [false]) -[647 10-08 01:54:56.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 0xc420124dc8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749514b6d726558544b4c38704e6a48745054616333596f44414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455755425a2f7a68353970306f74765a363737714b6437654779795631757558780a2b517445413247344f47366b7646314d4155433368786e43796150535665486b4e774c43764a42443756582b44484258614f487033714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672f6e304a35624c693937484c0a43705869714244696951323162376b3973796c614d4131303333617038337377436759494b6f5a497a6a30454177494452774177524149684149564275392f450a5053304f6a746d6f625566654b326b332b357863393854764852515a575041577a4c335a4168392b685139624733633358703257614870364767454e354866640a7139415541426868413345654e6944390a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[648 10-08 01:54:56.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 0xc420124dc8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[649 10-08 01:54:56.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 0xc420124dc8 principal evaluation fails -[64a 10-08 01:54:56.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 0xc420124dc8 gate 1507427696986381133 evaluation fails -[64b 10-08 01:54:56.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 did not satisfy policy /Channel/Application/Org2MSP/Readers -[64c 10-08 01:54:56.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/Application/Org2MSP/Readers -[64d 10-08 01:54:56.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/Application/Org1MSP/Readers == -[64e 10-08 01:54:56.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 0xc420124dd0 gate 1507427696987704554 evaluation starts -[64f 10-08 01:54:56.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 0xc420124dd0 signed by 0 principal evaluation starts (used [false]) -[650 10-08 01:54:56.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 0xc420124dd0 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749514b6d726558544b4c38704e6a48745054616333596f44414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455755425a2f7a68353970306f74765a363737714b6437654779795631757558780a2b517445413247344f47366b7646314d4155433368786e43796150535665486b4e774c43764a42443756582b44484258614f487033714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672f6e304a35624c693937484c0a43705869714244696951323162376b3973796c614d4131303333617038337377436759494b6f5a497a6a30454177494452774177524149684149564275392f450a5053304f6a746d6f625566654b326b332b357863393854764852515a575041577a4c335a4168392b685139624733633358703257614870364767454e354866640a7139415541426868413345654e6944390a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[651 10-08 01:54:56.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 Org1MSP -[652 10-08 01:54:56.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 Org1MSP validating identity -[653 10-08 01:54:56.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 0xc420124dd0 principal matched by identity 0 -[654 10-08 01:54:56.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 c0 38 74 ee 8a 63 bf 4b 59 a7 01 0d a2 02 d3 48 |.8t..c.KY......H| -00000010 19 61 7f 03 50 40 c8 dd a3 19 b8 92 26 6c 05 c7 |.a..P@......&l..| -[655 10-08 01:54:56.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 52 a4 b6 59 84 35 c9 e5 b1 10 88 25 |0D. R..Y.5.....%| -00000010 2d 52 0d f6 71 59 75 68 a4 15 7c c3 ad 2e 58 57 |-R..qYuh..|...XW| -00000020 c9 93 e2 c1 02 20 57 3e 71 63 e3 27 f7 8c 45 8d |..... W>qc.'..E.| -00000030 22 1c ed b4 bd e0 98 5e 4d 7b 10 f7 64 4e b6 4e |"......^M{..dN.N| -00000040 6b 72 7c c6 00 2f |kr|../| -[656 10-08 01:54:56.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 0xc420124dd0 principal evaluation succeeds for identity 0 -[657 10-08 01:54:56.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 0xc420124dd0 gate 1507427696987704554 evaluation succeeds -[658 10-08 01:54:56.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/Application/Org1MSP/Readers -[659 10-08 01:54:56.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/Application/Org1MSP/Readers -[65a 10-08 01:54:56.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/Application/Readers -[65b 10-08 01:54:56.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/Application/Readers -[65c 10-08 01:54:56.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 -[65d 10-08 01:54:56.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 -[65e 10-08 01:54:56.98 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420d33580) start: > stop: > from 172.18.0.10:40720 -[65f 10-08 01:54:56.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12285] -[660 10-08 01:54:56.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13863], Going to peek [8] bytes -[661 10-08 01:54:56.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13861], placementInfo={fileNum=[0], startOffset=[12285], bytesOffset=[12287]} -[662 10-08 01:54:56.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13861] read from file [0] -[663 10-08 01:54:56.99 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d33580) for 172.18.0.10:40720 -[664 10-08 01:55:05.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[665 10-08 01:55:05.01 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.11:44042 -[666 10-08 01:55:33.24 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.11:44042 with txid 'a58218886d8bd744d2466f1e27cdf515f828397310e24959f200191251f081c9' of type ENDORSER_TRANSACTION -[667 10-08 01:55:33.24 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg -> DEBU env=payload:"\n\260\007\nl\010\003\032\013\010\371\212\346\316\005\020\362\204\335\010\"\017businesschannel*@a58218886d8bd744d2466f1e27cdf515f828397310e24959f200191251f081c9:\010\022\006\022\004lscc\022\277\006\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\036\310\233_\261\375\002\236\024\220:\322=1\224\000(\315\001\253c(\350\203\022\366\022\n\363\022\n\277\006\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\036\310\233_\261\375\002\236\024\220:\322=1\224\000(\315\001\253c(\350\203\022\256\014\n\214\001\n\211\001\n\206\001\010\001\022\006\022\004lscc\032z\n\006deploy\n\017businesschannel\n)\n'\010\001\022\013\022\004mycc\032\0031.0\032\026\n\004init\n\001a\n\003100\n\001b\n\003200\n(\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\013\022\t\n\007Org1MSP\032\013\022\t\n\007Org2MSP\n\004escc\n\004vscc\022\234\013\n\254\004\n A\2560M4 \203\200\310\273\223\331\315\013\313\204\321\253*\020\253\261\326\365^\235s\254/\250\202\216\022\207\004\n\225\002\022\364\001\n\004lscc\022\353\001\n\006\n\004mycc\032\340\001\n\004mycc\032\327\001\n\004mycc\022\0031.0\032\004escc\"\004vscc*(\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\013\022\t\n\007Org1MSP\032\013\022\t\n\007Org2MSP2D\n S\357t\247\217\031\216,a\360\256\323\252\213v\370\207K\332'\200\232\267\\q\254\216c\025l\rC\022 \007\037\024)\036\025+\262\256\210\347\375\371\345\247t\323\023ak\243\025J\204\366\240\324Z\027_c&: \366\005\203!\324f&w\215\014\371\264\261K\325\312\013W\273s`_;\307\024\313\261\246J\352\\\247B,\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\r\022\013\n\007Org1MSP\020\001\032\r\022\013\n\007Org2MSP\020\001\022\034\n\004mycc\022\024\032\010\n\001a\032\003100\032\010\n\001b\032\003200\032\335\001\010\310\001\032\327\001\n\004mycc\022\0031.0\032\004escc\"\004vscc*(\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\013\022\t\n\007Org1MSP\032\013\022\t\n\007Org2MSP2D\n S\357t\247\217\031\216,a\360\256\323\252\213v\370\207K\332'\200\232\267\\q\254\216c\025l\rC\022 \007\037\024)\036\025+\262\256\210\347\375\371\345\247t\323\023ak\243\025J\204\366\240\324Z\027_c&: \366\005\203!\324f&w\215\014\371\264\261K\325\312\013W\273s`_;\307\024\313\261\246J\352\\\247B,\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\r\022\013\n\007Org1MSP\020\001\032\r\022\013\n\007Org2MSP\020\001\"\r\022\004lscc\032\0051.1.0\022\352\006\n\236\006\n\007Org1MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\022G0E\002!\000\200\017r\221\005g\035\356\323\006\010Z\232e]\275\007\305\210\213\357\302\240\313z\334-\360\033C\332L\002 g\350\327\222\347\357(^\275\330\243-\222\3762\241\373Ir\231\314\014\002\336\343\"%\030\211\213\211\036" signature:"0E\002!\000\340Y\017\031\031\022\310s\206\303\n\003\326U\230\231OWE\371U\244D\037\216x\346\313\r\322\233\317\002 \025\256\034\341\304_\3333\251\322\003\242\020\367\007\371\330\327\252aBC_7\304\342\234\301+\273\333\225" -[668 10-08 01:55:33.24 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 == -[669 10-08 01:55:33.24 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 -[66a 10-08 01:55:33.24 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 == -[66b 10-08 01:55:33.24 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 -[66c 10-08 01:55:33.24 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 == -[66d 10-08 01:55:33.24 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 -[66e 10-08 01:55:33.24 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[66f 10-08 01:55:33.24 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 0xc42000e1c8 gate 1507427733243311113 evaluation starts -[670 10-08 01:55:33.24 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 0xc42000e1c8 signed by 0 principal evaluation starts (used [false]) -[671 10-08 01:55:33.24 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 0xc42000e1c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[672 10-08 01:55:33.24 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 0xc42000e1c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[673 10-08 01:55:33.24 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 0xc42000e1c8 principal evaluation fails -[674 10-08 01:55:33.24 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 0xc42000e1c8 gate 1507427733243311113 evaluation fails -[675 10-08 01:55:33.24 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 -[676 10-08 01:55:33.24 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 -[677 10-08 01:55:33.24 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 ] -[678 10-08 01:55:33.24 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 -[679 10-08 01:55:33.24 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 -[67a 10-08 01:55:33.24 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 == -[67b 10-08 01:55:33.24 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 -[67c 10-08 01:55:33.24 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 == -[67d 10-08 01:55:33.24 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 0xc42000e440 gate 1507427733243672609 evaluation starts -[67e 10-08 01:55:33.24 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 0xc42000e440 signed by 0 principal evaluation starts (used [false]) -[67f 10-08 01:55:33.24 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 0xc42000e440 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[680 10-08 01:55:33.24 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 0xc42000e440 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[681 10-08 01:55:33.24 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 0xc42000e440 principal evaluation fails -[682 10-08 01:55:33.24 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 0xc42000e440 gate 1507427733243672609 evaluation fails -[683 10-08 01:55:33.24 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 -[684 10-08 01:55:33.24 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 -[685 10-08 01:55:33.24 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 == -[686 10-08 01:55:33.24 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 0xc42000e4b0 gate 1507427733243897358 evaluation starts -[687 10-08 01:55:33.24 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 0xc42000e4b0 signed by 0 principal evaluation starts (used [false]) -[688 10-08 01:55:33.24 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 0xc42000e4b0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[689 10-08 01:55:33.24 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 -[68a 10-08 01:55:33.24 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 -[68b 10-08 01:55:33.24 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 0xc42000e4b0 principal matched by identity 0 -[68c 10-08 01:55:33.24 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 bc 8d 27 4d fc cc 27 d8 55 a0 a7 cd 74 68 42 bc |..'M..'.U...thB.| -00000010 ac ae ce c6 ab 9b 15 b1 c5 71 ac 1f c4 51 58 8a |.........q...QX.| -[68d 10-08 01:55:33.24 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 e0 59 0f 19 19 12 c8 73 86 c3 0a |0E.!..Y.....s...| -00000010 03 d6 55 98 99 4f 57 45 f9 55 a4 44 1f 8e 78 e6 |..U..OWE.U.D..x.| -00000020 cb 0d d2 9b cf 02 20 15 ae 1c e1 c4 5f db 33 a9 |...... ....._.3.| -00000030 d2 03 a2 10 f7 07 f9 d8 d7 aa 61 42 43 5f 37 c4 |..........aBC_7.| -00000040 e2 9c c1 2b bb db 95 |...+...| -[68e 10-08 01:55:33.24 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 0xc42000e4b0 principal evaluation succeeds for identity 0 -[68f 10-08 01:55:33.24 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 0xc42000e4b0 gate 1507427733243897358 evaluation succeeds -[690 10-08 01:55:33.24 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 -[691 10-08 01:55:33.24 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 -[692 10-08 01:55:33.24 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 -[693 10-08 01:55:33.24 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 -[694 10-08 01:55:33.24 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 -[695 10-08 01:55:33.24 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 -[696 10-08 01:55:33.24 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Order.Order.enqueue -> DEBU [channel: businesschannel] Enqueueing envelope... -[697 10-08 01:55:33.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 2. Inspecting type... -[698 10-08 01:55:33.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU [channel: businesschannel] Processing regular Kafka message of type NORMAL -[699 10-08 01:55:33.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU Receive KafkaMessageRegular_NORMAL -[69a 10-08 01:55:33.29 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] processMessagesToBlocks.processRegular.func1.Ordered -> DEBU Enqueuing message into batch -[69b 10-08 01:55:33.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func1 -> DEBU [channel: businesschannel] Ordering results: items in batch = 0, pending = true -[69c 10-08 01:55:33.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func1 -> DEBU [channel: businesschannel] Just began 2s batch timer -[69d 10-08 01:55:33.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Order.Order.enqueue -> DEBU [channel: businesschannel] Envelope enqueued successfully -[69e 10-08 01:55:33.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 ENDORSER_TRANSACTION from 172.18.0.11:44042 -[69f 10-08 01:55:33.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.11:44042: rpc error: code = Canceled desc = context canceled -[6a0 10-08 01:55:33.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[6a1 10-08 01:55:35.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.sendTimeToCut -> DEBU [channel: businesschannel] Time-to-cut block 2 timer expired -[6a2 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 3. Inspecting type... -[6a3 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] It's a time-to-cut message for block 2 -[6a4 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] Nil'd the timer -[6a5 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] Proper time-to-cut received, just cut block 2 -[6a6 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[6a7 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[6a8 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[6a9 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[6aa 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...260A2F5F1AA0E252FAE6DEC77C7C57FB -[6ab 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6FCFAC132E434ECF99AB04FFB31B181272A5D3B2FEC4F15665E2764D10CBBC49 -[6ac 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[6ad 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[6ae 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[6af 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[6b0 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[6b1 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010AFA050A0A4F7264657265724D53...260A2F5F1AA0E252FAE6DEC77C7C57FB -[6b2 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 986BAB03F3DCA9E21133BFFBE28F29B46EB2FF98CFD1F7EBC9696D63C00AEAFE -2017/10/08 01:55:35 proto: textWriter unindented too far -2017/10/08 01:55:35 proto: textWriter unindented too far -2017/10/08 01:55:35 proto: textWriter unindented too far -[6b3 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] commitBlock.Append.Append -> DEBU Add block to ledger: header:<6:71 0:"\x02" } 4:12 13:487716822 10:/* unknown wire type 6 */ 9:/* unknown wire type 6 */ 171920:"\xb4\xeaH|" } 8:940440014 1064442260:/* unexpected EOF */ 1106055:/* unknown wire type 7 */ 4:114 } 7:118167924 1434:872616797 79353:/* unknown wire type 7 */ 1:/* unexpected EOF */ 11:/* unknown wire type 7 */ 3:/* unexpected EOF */ 4179555951:/* unexpected EOF */ 10:/* unknown wire type 7 */ /* unexpected EOF */ >data:<1:"\n\xb0\a\nl\b\x03\x1a\v\b\xf9\x8a\xe6\xce\x05\x10\xf2\x84\xdd\b\"\x0fbusinesschannel*@a58218886d8bd744d2466f1e27cdf515f828397310e24959f200191251f081c9:\b\x12\x06\x12\x04lscc\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\x1eț_\xb1\xfd\x02\x9e\x14\x90:\xd2=1\x94\x00(\xcd\x01\xabc(\xe8\x83\x12\xf6\x12\n\xf3\x12\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\x1eț_\xb1\xfd\x02\x9e\x14\x90:\xd2=1\x94\x00(\xcd\x01\xabc(\xe8\x83\x12\xae\f\n\x8c\x01\n\x89\x01\n\x86\x01\b\x01\x12\x06\x12\x04lscc\x1az\n\x06deploy\n\x0fbusinesschannel\n)\n'\b\x01\x12\v\x12\x04mycc\x1a\x031.0\x1a\x16\n\x04init\n\x01a\n\x03100\n\x01b\n\x03200\n(\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\v\x12\t\n\aOrg1MSP\x1a\v\x12\t\n\aOrg2MSP\n\x04escc\n\x04vscc\x12\x9c\v\n\xac\x04\n A\xae0M4 \x83\x80Ȼ\x93\xd9\xcd\v˄ѫ*\x10\xab\xb1\xd6\xf5^\x9ds\xac/\xa8\x82\x8e\x12\x87\x04\n\x95\x02\x12\xf4\x01\n\x04lscc\x12\xeb\x01\n\x06\n\x04mycc\x1a\xe0\x01\n\x04mycc\x1a\xd7\x01\n\x04mycc\x12\x031.0\x1a\x04escc\"\x04vscc*(\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\v\x12\t\n\aOrg1MSP\x1a\v\x12\t\n\aOrg2MSP2D\n S\xeft\xa7\x8f\x19\x8e,a\xf0\xaeӪ\x8bv\xf8\x87K\xda'\x80\x9a\xb7\\q\xac\x8ec\x15l\rC\x12 \a\x1f\x14)\x1e\x15+\xb2\xae\x88\xe7\xfd\xf9\xe5\xa7t\xd3\x13ak\xa3\x15J\x84\xf6\xa0\xd4Z\x17_c&: \xf6\x05\x83!\xd4f&w\x8d\f\xf9\xb4\xb1K\xd5\xca\vW\xbbs`_;\xc7\x14˱\xa6J\xea\\\xa7B,\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x12\x1c\n\x04mycc\x12\x14\x1a\b\n\x01a\x1a\x03100\x1a\b\n\x01b\x1a\x03200\x1a\xdd\x01\b\xc8\x01\x1a\xd7\x01\n\x04mycc\x12\x031.0\x1a\x04escc\"\x04vscc*(\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\v\x12\t\n\aOrg1MSP\x1a\v\x12\t\n\aOrg2MSP2D\n S\xeft\xa7\x8f\x19\x8e,a\xf0\xaeӪ\x8bv\xf8\x87K\xda'\x80\x9a\xb7\\q\xac\x8ec\x15l\rC\x12 \a\x1f\x14)\x1e\x15+\xb2\xae\x88\xe7\xfd\xf9\xe5\xa7t\xd3\x13ak\xa3\x15J\x84\xf6\xa0\xd4Z\x17_c&: \xf6\x05\x83!\xd4f&w\x8d\f\xf9\xb4\xb1K\xd5\xca\vW\xbbs`_;\xc7\x14˱\xa6J\xea\\\xa7B,\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\r\x12\v\n\aOrg2MSP\x10\x01\"\r\x12\x04lscc\x1a\x051.1.0\x12\xea\x06\n\x9e\x06\n\aOrg1MSP\x12\x92\x06-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\x12G0E\x02!\x00\x80\x0fr\x91\x05g\x1d\xee\xd3\x06\bZ\x9ae]\xbd\aň\x8b\xef\u00a0\xcbz\xdc-\xf0\x1bC\xdaL\x02 g\xe8ג\xe7\xef(^\xbdأ-\x92\xfe2\xa1\xfbIr\x99\xcc\f\x02\xde\xe3\"%\x18\x89\x8b\x89\x1e" 2:"0E\x02!\x00\xe0Y\x0f\x19\x19\x12\xc8s\x86\xc3\n\x03\xd6U\x98\x99OWE\xf9U\xa4D\x1f\x8ex\xe6\xcb\rқ\xcf\x02 \x15\xae\x1c\xe1\xc4_\xdb3\xa9\xd2\x03\xa2\x10\xf7\a\xf9\xd8תaBC_7\xc4\xe2\x9c\xc1+\xbbە" >metadata:V\312\247\247\347R)~\304\367\355\377\342=B4\002 \243cB~\211e&\033\376i'I.\265\367\337C[\375\257\032s\363$\271\021uE7\300M" metadata:"" metadata:"\n\002\010\003" > -[6b4 10-08 01:55:35.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr -[6b5 10-08 01:55:35.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x8, 0xf4, 0x25, 0xc2, 0x6a, 0xb2, 0x4d, 0x62, 0x19, 0x30, 0x9c, 0x63, 0xdb, 0x8f, 0xf5, 0x6b, 0xc1, 0x1f, 0xe0, 0xa8, 0x36, 0xb5, 0xbc, 0x5, 0x5, 0xe2, 0x69, 0xd7, 0x7b, 0x1c, 0xe6, 0x4d} txOffsets= -txId=a58218886d8bd744d2466f1e27cdf515f828397310e24959f200191251f081c9 locPointer=offset=70, bytesLength=3450 -] -[6b6 10-08 01:55:35.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[31422], isChainEmpty=[false], lastBlockNumber=[2] -[6b7 10-08 01:55:35.31 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -[6b8 10-08 01:55:35.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5274], Going to peek [8] bytes -[6b9 10-08 01:55:35.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5272], placementInfo={fileNum=[0], startOffset=[26148], bytesOffset=[26150]} -[6ba 10-08 01:55:35.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5272] read from file [0] -[6bb 10-08 01:55:35.31 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d33580) for 172.18.0.10:40720 -[6bc 10-08 01:55:41.04 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[6bd 10-08 01:55:41.04 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.11:44050 -[6be 10-08 01:55:41.08 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.11:44050 with txid '9ceedae8879db93700d143229786fd2190a6ffef2eca718a85f787bae2e8aedb' of type ENDORSER_TRANSACTION -[6bf 10-08 01:55:41.08 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg -> DEBU env=payload:"\n\260\007\nl\010\003\032\013\010\235\213\346\316\005\020\377\221\221\027\"\017businesschannel*@9ceedae8879db93700d143229786fd2190a6ffef2eca718a85f787bae2e8aedb:\010\022\006\022\004mycc\022\277\006\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\307BU\020aJ\343\022\370\241\314I\255|\274\242\277\020\014\222\356V\235\247\022\332\016\n\327\016\n\277\006\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\307BU\020aJ\343\022\370\241\314I\255|\274\242\277\020\014\222\356V\235\247\022\222\010\n\"\n \n\036\010\001\022\006\022\004mycc\032\022\n\006invoke\n\001a\n\001b\n\00210\022\353\007\n}\n 5Y\336zF\377\341J\224\350\223\215\363\035\nYot\2714\275\364z\233\261\261\003:\270\260\261\314\022Y\nE\022\024\n\004lscc\022\014\n\n\n\004mycc\022\002\010\002\022-\n\004mycc\022%\n\007\n\001a\022\002\010\002\n\007\n\001b\022\002\010\002\032\007\n\001a\032\00290\032\010\n\001b\032\003210\032\003\010\310\001\"\013\022\004mycc\032\0031.0\022\351\006\n\236\006\n\007Org1MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\022F0D\002 k\327\314a\216\342\177\021\010Q`\310\262\305\365\350:`\004x\327\355=\020\225W\3717\227\350\255q\002 S\261\243\271\266xs;\377\316\226\337\276;\023N\334d\010E\340\014]\271\215\350\037\201\256\236Q\004" signature:"0E\002!\000\362uXT\342\306b%\010\256U)\257K\226\341Q\r\357W\370\337\270\\\331\002 \032n\265k\212\020r*\317\025\003\223\257\304S\364\376x\326\267f\031\\\222\250\251\330Qo\n2\367" -[6c0 10-08 01:55:41.08 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 == -[6c1 10-08 01:55:41.08 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 -[6c2 10-08 01:55:41.08 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 == -[6c3 10-08 01:55:41.08 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 -[6c4 10-08 01:55:41.08 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 == -[6c5 10-08 01:55:41.08 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 0xc4201240a8 gate 1507427741085690578 evaluation starts -[6c6 10-08 01:55:41.08 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 0xc4201240a8 signed by 0 principal evaluation starts (used [false]) -[6c7 10-08 01:55:41.08 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 0xc4201240a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[6c8 10-08 01:55:41.08 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 0xc4201240a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[6c9 10-08 01:55:41.08 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 0xc4201240a8 principal evaluation fails -[6ca 10-08 01:55:41.08 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 0xc4201240a8 gate 1507427741085690578 evaluation fails -[6cb 10-08 01:55:41.08 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 -[6cc 10-08 01:55:41.08 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 -[6cd 10-08 01:55:41.08 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 ] -[6ce 10-08 01:55:41.08 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 -[6cf 10-08 01:55:41.08 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 -[6d0 10-08 01:55:41.08 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 == -[6d1 10-08 01:55:41.08 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 -[6d2 10-08 01:55:41.08 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 == -[6d3 10-08 01:55:41.08 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 0xc4201240b0 gate 1507427741086539629 evaluation starts -[6d4 10-08 01:55:41.08 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 0xc4201240b0 signed by 0 principal evaluation starts (used [false]) -[6d5 10-08 01:55:41.08 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 0xc4201240b0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[6d6 10-08 01:55:41.08 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 0xc4201240b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[6d7 10-08 01:55:41.08 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 0xc4201240b0 principal evaluation fails -[6d8 10-08 01:55:41.08 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 0xc4201240b0 gate 1507427741086539629 evaluation fails -[6d9 10-08 01:55:41.08 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 -[6da 10-08 01:55:41.08 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 -[6db 10-08 01:55:41.08 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 == -[6dc 10-08 01:55:41.08 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 0xc4201240c0 gate 1507427741086931990 evaluation starts -[6dd 10-08 01:55:41.08 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 0xc4201240c0 signed by 0 principal evaluation starts (used [false]) -[6de 10-08 01:55:41.08 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 0xc4201240c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[6df 10-08 01:55:41.08 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 -[6e0 10-08 01:55:41.08 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 -[6e1 10-08 01:55:41.08 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 0xc4201240c0 principal matched by identity 0 -[6e2 10-08 01:55:41.08 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 d6 94 68 3e 66 0c 85 a8 fb 17 b8 ad 76 9c 81 4f |..h>f.......v..O| -00000010 e0 6a aa e6 4a eb 10 82 40 e5 c2 0a 87 1b 57 5c |.j..J...@.....W\| -[6e3 10-08 01:55:41.08 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 f2 75 58 54 e2 c6 62 25 08 ae 55 |0E.!..uXT..b%..U| -00000010 29 af 4b 96 e1 51 3c 77 fb 83 df e3 3e 0d ef 57 |).K..Q..W| -00000020 f8 df b8 5c d9 02 20 1a 6e b5 6b 8a 10 72 2a cf |...\.. .n.k..r*.| -00000030 15 03 93 af c4 53 f4 fe 78 d6 b7 66 19 5c 92 a8 |.....S..x..f.\..| -00000040 a9 d8 51 6f 0a 32 f7 |..Qo.2.| -[6e4 10-08 01:55:41.08 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 0xc4201240c0 principal evaluation succeeds for identity 0 -[6e5 10-08 01:55:41.08 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 0xc4201240c0 gate 1507427741086931990 evaluation succeeds -[6e6 10-08 01:55:41.08 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 -[6e7 10-08 01:55:41.08 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 -[6e8 10-08 01:55:41.08 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 -[6e9 10-08 01:55:41.08 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 -[6ea 10-08 01:55:41.08 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 -[6eb 10-08 01:55:41.08 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 -[6ec 10-08 01:55:41.08 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Order.Order.enqueue -> DEBU [channel: businesschannel] Enqueueing envelope... -[6ed 10-08 01:55:41.12 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 4. Inspecting type... -[6ee 10-08 01:55:41.12 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU [channel: businesschannel] Processing regular Kafka message of type NORMAL -[6ef 10-08 01:55:41.12 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU Receive KafkaMessageRegular_NORMAL -[6f0 10-08 01:55:41.12 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] processMessagesToBlocks.processRegular.func1.Ordered -> DEBU Enqueuing message into batch -[6f1 10-08 01:55:41.12 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func1 -> DEBU [channel: businesschannel] Ordering results: items in batch = 0, pending = true -[6f2 10-08 01:55:41.12 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func1 -> DEBU [channel: businesschannel] Just began 2s batch timer -[6f3 10-08 01:55:41.12 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Order.Order.enqueue -> DEBU [channel: businesschannel] Envelope enqueued successfully -[6f4 10-08 01:55:41.12 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.11:44050 -[6f5 10-08 01:55:41.12 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.11:44050: rpc error: code = Canceled desc = context canceled -[6f6 10-08 01:55:41.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[6f7 10-08 01:55:43.12 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.sendTimeToCut -> DEBU [channel: businesschannel] Time-to-cut block 3 timer expired -[6f8 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 5. Inspecting type... -[6f9 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] It's a time-to-cut message for block 3 -[6fa 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] Nil'd the timer -[6fb 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] Proper time-to-cut received, just cut block 3 -[6fc 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[6fd 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[6fe 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[6ff 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[700 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AFA050A0A4F7264657265724D535012...013C0D660ACF793D267AA230AA55F131 -[701 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E50493932D1A53EC6B08E39DBC90AA13EF963856D3A5CD5DB1BB3C60C6C46067 -[702 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[703 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[704 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[705 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[706 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[707 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010AFA050A0A4F7264657265724D53...013C0D660ACF793D267AA230AA55F131 -[708 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 2E9C2B539D187C4D1FB7C2EFDD98D7213AD02DB66BFF4F17F396D1A93BCDA4DA -2017/10/08 01:55:43 proto: textWriter unindented too far -2017/10/08 01:55:43 proto: textWriter unindented too far -[709 10-08 01:55:43.14 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] commitBlock.Append.Append -> DEBU Add block to ledger: header:<6:71 0:"\x03" } 4:8 } 1704:/* unexpected EOF */ 12:"0\x9ccۏ\xf5k\xc1\x1f\xe0\xa86\xb5\xbc\x05\x05\xe2i\xd7{\x1c\xe6M\x04 " 1460:3211887624 1271:76 537:953639234398262189 12:/* unknown wire type 6 */ 1:/* unexpected EOF */ 7:815954470 1365:/* unexpected EOF */ >data:<1:"\n\xb0\a\nl\b\x03\x1a\v\b\x9d\x8b\xe6\xce\x05\x10\xff\x91\x91\x17\"\x0fbusinesschannel*@9ceedae8879db93700d143229786fd2190a6ffef2eca718a85f787bae2e8aedb:\b\x12\x06\x12\x04mycc\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xc7BU\x10aJ\xe3\x12\xf8\xa1\xccI\xad|\xbc\xa2\xbf\x10\f\x92\xeeV\x9d\xa7\x12\xda\x0e\n\xd7\x0e\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xc7BU\x10aJ\xe3\x12\xf8\xa1\xccI\xad|\xbc\xa2\xbf\x10\f\x92\xeeV\x9d\xa7\x12\x92\b\n\"\n \n\x1e\b\x01\x12\x06\x12\x04mycc\x1a\x12\n\x06invoke\n\x01a\n\x01b\n\x0210\x12\xeb\a\n}\n 5Y\xdezF\xff\xe1J\x94蓍\xf3\x1d\nYot\xb94\xbd\xf4z\x9b\xb1\xb1\x03:\xb8\xb0\xb1\xcc\x12Y\nE\x12\x14\n\x04lscc\x12\f\n\n\n\x04mycc\x12\x02\b\x02\x12-\n\x04mycc\x12%\n\a\n\x01a\x12\x02\b\x02\n\a\n\x01b\x12\x02\b\x02\x1a\a\n\x01a\x1a\x0290\x1a\b\n\x01b\x1a\x03210\x1a\x03\b\xc8\x01\"\v\x12\x04mycc\x1a\x031.0\x12\xe9\x06\n\x9e\x06\n\aOrg1MSP\x12\x92\x06-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\x12F0D\x02 k\xd7\xcca\x8e\xe2\u007f\x11\bQ`Ȳ\xc5\xf5\xe8:`\x04x\xd7\xed=\x10\x95W\xf97\x97\xe8\xadq\x02 S\xb1\xa3\xb9\xb6xs;\xffΖ\u07fe;\x13N\xdcd\bE\xe0\f]\xb9\x8d\xe8\x1f\x81\xae\x9eQ\x04" 2:"0E\x02!\x00\xf2uXT\xe2\xc6b%\b\xaeU)\xafK\x96\xe1Q\r\xefW\xf8߸\\\xd9\x02 \x1an\xb5k\x8a\x10r*\xcf\x15\x03\x93\xaf\xc4S\xf4\xfexַf\x19\\\x92\xa8\xa9\xd8Qo\n2\xf7" >metadata: -[70a 10-08 01:55:43.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr -[70b 10-08 01:55:43.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x4, 0xde, 0x4, 0xd, 0xac, 0x3a, 0x7, 0x1e, 0x66, 0xdd, 0xd, 0xff, 0x84, 0xfb, 0x7d, 0x24, 0xea, 0x72, 0xa6, 0x4b, 0x61, 0x8c, 0xc, 0xc6, 0xae, 0x3e, 0x52, 0xc1, 0xe, 0x9a, 0xb0, 0xf9} txOffsets= -txId=9ceedae8879db93700d143229786fd2190a6ffef2eca718a85f787bae2e8aedb locPointer=offset=70, bytesLength=2910 -] -[70c 10-08 01:55:43.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[36155], isChainEmpty=[false], lastBlockNumber=[3] -[70d 10-08 01:55:43.15 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -[70e 10-08 01:55:43.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4733], Going to peek [8] bytes -[70f 10-08 01:55:43.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4731], placementInfo={fileNum=[0], startOffset=[31422], bytesOffset=[31424]} -[710 10-08 01:55:43.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4731] read from file [0] -[711 10-08 01:55:43.15 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420d33580) for 172.18.0.10:40720 diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.block b/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.block deleted file mode 100644 index 5c1797fa..00000000 Binary files a/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.block and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.json b/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.json deleted file mode 100644 index 591ac3ed..00000000 --- a/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.json +++ /dev/null @@ -1,596 +0,0 @@ -{ - "data": { - "data": [ - { - "payload": { - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "Org1MSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQUxHa2ZJRThZNFNKdU1Zd2lWWGdST0F3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkFJQTMrZ2R4QW8vRDdhakdkeFdtelFNV05NY3ZGTjhCV1RYNWRLd1o0M1pHa1hxM1p6WWM2YitkS0FVYktLWQpWaUsrSXhNQkorM2RIMEhocEhzVU9lbWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVA1OUNlV3k0dmV4eXdxVjRxZ1EKNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDdFIzMFJJU0V0OWc3YwpHUGt5Zi92V25XVmtabjJIYUxyaldPQzhsRkdIQUFJZ0k0eXNVekZJa2ZkY2MySjNhRkFnc0w1MGVLbkl3MjZVCkR5T2kwaHlkYS84PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTakNDQWZDZ0F3SUJBZ0lSQUxrM1R5cXFSYUlqZGtsdTZWRzVyVnN3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1EQTJNVEUwT0RBeFdoY05NamN4TURBME1URTAKT0RBeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSnpQVk1iZDFaOWVodTRTYU5BeW5vaWE3bGkrUXJjTGxqeWR5VitaSGQ5b3N0VzA4b01VTVF5cgo1OGdsczdYZ2lyVkF6ay9oSTR4ZnVHY2I5aW9sOFFLalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT3VsQnhyZXR0dlYKcXVRUVU5eXFhT2JxcEZtYzE3NnJrcStLekpyTlNoeW9NQW9HQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNGc1BjVQo5VVQyRFNQZGhqU3lTQnF6UUE2ZG1hMk9waEx3K2NZcHBhYmtDQUlnWGJheStiaVlnWThEYUFyT0hCUTRhNllRCm9pWU9NeGRuQWM3SDROUXFkd3c9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ] - }, - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRQjgzYWNLdEtGOHpOSWd4SjVPQSt6akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV3TURZeE1UUTRNREZhRncweU56RXdNRFF4TVRRNE1ERmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFODZNR0tDNWFXSEFob0xMMmxFcDV6Y05IMEN3ZTIvSFIKVUNKQXVhSVM0bVRQN3VsbTFVR1RaYm9MMC9qRmdXN2JGWHphc3V5OUpTTWRRTXFnQlJzVVphTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0Fna0NHUnZRN2N2cnlvClAwWlo3OWhWdFZoTFRkQkY2NHFPTFpoVytzbnh2dWd3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUtiUk5YUE4KcGZReS9xWEc3Zzdxbi8zclpYSko3VGF4U0RKUkt1MDJNVW1qQWlBMWJvdmhUSW1YeWlVbE9lM0RHeGkzejlTRQpLUTZMS0R5M1VjcGFMTC8xVWc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "Org2MSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1YazFMLzZ2V1dRQkZ6eDJqdy9FSlF3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQk5URVNPaW1DaUFZMG9seWtEN1Z1RWN0WTNCb29EN2ZMRS83WUhsc3NLMlhaTEFQekVuODRxRk43VDI0UW5YdQovdFMwYVRLYmxuQmRWNEJWRnROSEZ1cWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUpBaGtiME8zTDY4cUQ5R1dlL1kKVmJWWVMwM1FSZXVLamkyWVZ2cko4YjdvTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDTEZIclZMcUdyUHhDMQovRGlWV3NKMGJSUGNhbVl2dzc5SWFMajVZczlBcEFJZ2R1RnU2TysrVFFYeUNGSGprVFppWVVua3ZSNU8vQVVWCmYyOXRiZzNpajlrPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQU5LZ1Y3dDZmSGVEeTlmOVpqdnBkMk13Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1EQTJNVEUwT0RBeFdoY05NamN4TURBME1URTAKT0RBeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCS0tXQXMwb3ZtMTg0ZXlSbFhWanlmSStrcGtWWUg1d3VERStmM3ZxQ0VWWU1EcUIyYURIN1RpcwpCN1hwZkVtQVRsaStERGQzcnFXKzNFeHdDSkVUQXlLalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJRWp1ZUJocXFmOC8KekowTmNHZWRIVUFTYThSU0pBeWs5UG5hYytXVzQ4SXZNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQmxHdWY0eQprUTZoMDdwdXBuS0Jtd3RvLzlmS3JRMWE2ZlVvOWcwMXRJSi9BaUIrSlJ2ck9oWlJBOElDYUVqN1c4WGRoK3Z4CjBjUERSVThieHE0Q1NHOVc3dz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ] - }, - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTHBmNnNKL3o5dGQvVGRSd1A5RjFRakFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEF3TmpFeE5EZ3dNVm9YRFRJM01UQXdOREV4TkRnd01Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVVMRVQ0SGZUa21kRmc5bGNJbFc3SjFZb29hRXRjTVZDdTA1YytJc2hrU2NpZ0tOQ0h1SVMKcFp5dHVNWXpwejZpcmJFUkVENmhrUjZrTTJEd2ZQSTVjNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZzJacUxneU5KMU85Yy96VjcxYkFnU2ZHNzlqR3JLSjhmCnJzY0MyYU03Q3Rrd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2JwZ3pOd0lFd2ZKVVFIRGJBTWNxTUxSQ3B3ZncKRDVDZnNDVHh0eWFBSGdJQ0lDMThGSjZuZDlHY3V2TVh0UElqZ2NHTkI0UkR6MDVndVVDYWlTQWorczZ1Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "OrdererMSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMakNDQWRXZ0F3SUJBZ0lRRVRyM1NIdWg0T0I1eEJEQnNzZ3JIVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEF3TmpFeE5EZ3dNVm9YRFRJM01UQXdOREV4TkRnd01Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJFOEcwbG1Hck10QUlEWnhOWkV5VkIyb3hTZGYKZ2VTTkRTb2ErUTRTTFZ1MzNqMjlVWGc4Rzg4VmR4cXozK0p3cTBvRnc3VkZEcVV2eENqY1FjcWxIOEtqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTm1haTRNalNkVHZYUDgxZTlXd0lFbnh1L1l4cXlpZkg2N0hBdG1qT3dyWk1Bb0cKQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRTg0N2ZMSnBmandRT2Q1b3AvZFMwck5Ca21XenFFMEhtVVY4eHVrYS82ZwpBaUFCNXQrU0trWEtJK3cyWCsvdWtKRHVKbVI3MUpta1Z6NFdOOGtubUovcVJ3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQU5VS0FIRDZjWWE3VnpWbVhmMmNXZVV3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFd01EWXhNVFE0TURGYUZ3MHlOekV3TURReE1UUTRNREZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFUUDQyMEZ1L1puWUhzeVhxZi8KdmpteGhaNUcvbEdIZG5VL3c5NTkvekp2N0Y1SkQ3dThYbnBjL3BsdVZvNFJSaTlCQ2JPblBBZVJMY3RLRms0YQpPRFpzbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDRG5sQkpYdG1WNkZuTncrY1FnSlVCTWRuZGx6Mkw0RGYwTGR1T1IKeFlYamNqQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQUZpV3l0VFgwbGlydGM2ZTRVd3F6V0lJUG9DQ21ScHJBVQpsaTU4OCt4empBSWdSRktRUFlSKytnd3pmZnRBZjliQ2w1aEEwcGl4WE9zaXpYNzhXcGJvM0lBPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ] - }, - "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": 10, - "preferred_max_bytes": 524288 - }, - "version": "0" - }, - "BatchTimeout": { - "mod_policy": "Admins", - "value": { - "timeout": "2s" - }, - "version": "0" - }, - "ChannelRestrictions": { - "mod_policy": "Admins", - "version": "0" - }, - "ConsensusType": { - "mod_policy": "Admins", - "value": { - "type": "kafka" - }, - "version": "0" - }, - "KafkaBrokers": { - "mod_policy": "Admins", - "value": { - "brokers": [ - "kafka0:9092", - "kafka1:9092", - "kafka2:9092", - "kafka3:9092" - ] - }, - "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" - }, - "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-10-06T11:53:02.000Z", - "tx_id": "1a1b979dfa8cadf6aaa24c1e0f359ff6cca14741ee34f49da20685f6e8ec0cf0", - "type": 1, - "version": 1 - }, - "signature_header": { - "nonce": "KQ7WvlwB1FWFvDczyccUNwtDFgLtTQx7" - } - } - } - } - ] - }, - "header": { - "data_hash": "f+ZD7UKl2mu9mBts2pWzp4Y2cnyqZt2VQmA/DqqXLpY=", - "number": "0" - }, - "metadata": { - "metadata": [ - "", - "", - "", - "" - ] - } -} diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.updated.block b/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.updated.block deleted file mode 100644 index 8efcd291..00000000 Binary files a/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.updated.block and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.updated.json b/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.updated.json deleted file mode 100644 index fd602fe9..00000000 --- a/hyperledger_fabric/latest/kafka/channel-artifacts/orderer.genesis.updated.json +++ /dev/null @@ -1,596 +0,0 @@ -{ - "data": { - "data": [ - { - "payload": { - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHakNDQWNDZ0F3SUJBZ0lSQUxSUENyNm5lYVdwdzhFUXdHcU42WGN3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQk5sSXlmdTZEQ2hWalBwdTMvalhBQlZ3UTFmZGVNeDIKSkp5RDlXeGpGV3hQS1FTNmxSdjNCTWtRSUY2eUljQWJVWVV5L1R0dXhBd2tnMmVjR1lXTGNCaWpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSVA1OUNlV3k0dmV4Cnl3cVY0cWdRNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFEd1AwdUsKTWE1UUxuTEtOS0JxYTh4VXFOTXhJcTVoazkxQzVNWVVETi9FUEFJZ1RtY25OQTNMRUlMNlhraExSV0xDMWhpbApSa0Q3Q1lxaE1UYmZtRGQ1K21jPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "Org1MSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQUxHa2ZJRThZNFNKdU1Zd2lWWGdST0F3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekV1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NUzVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1TNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQkFJQTMrZ2R4QW8vRDdhakdkeFdtelFNV05NY3ZGTjhCV1RYNWRLd1o0M1pHa1hxM1p6WWM2YitkS0FVYktLWQpWaUsrSXhNQkorM2RIMEhocEhzVU9lbWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSVA1OUNlV3k0dmV4eXdxVjRxZ1EKNG9rTnRXKzVQYk1wV2pBTmROOTJxZk43TUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDdFIzMFJJU0V0OWc3YwpHUGt5Zi92V25XVmtabjJIYUxyaldPQzhsRkdIQUFJZ0k0eXNVekZJa2ZkY2MySjNhRkFnc0w1MGVLbkl3MjZVCkR5T2kwaHlkYS84PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTakNDQWZDZ0F3SUJBZ0lSQUxrM1R5cXFSYUlqZGtsdTZWRzVyVnN3Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpFdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpFdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1EQTJNVEUwT0RBeFdoY05NamN4TURBME1URTAKT0RBeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTVM1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTVM1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCSnpQVk1iZDFaOWVodTRTYU5BeW5vaWE3bGkrUXJjTGxqeWR5VitaSGQ5b3N0VzA4b01VTVF5cgo1OGdsczdYZ2lyVkF6ay9oSTR4ZnVHY2I5aW9sOFFLalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJT3VsQnhyZXR0dlYKcXVRUVU5eXFhT2JxcEZtYzE3NnJrcStLekpyTlNoeW9NQW9HQ0NxR1NNNDlCQU1DQTBnQU1FVUNJUUNGc1BjVQo5VVQyRFNQZGhqU3lTQnF6UUE2ZG1hMk9waEx3K2NZcHBhYmtDQUlnWGJheStiaVlnWThEYUFyT0hCUTRhNllRCm9pWU9NeGRuQWM3SDROUXFkd3c9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ] - }, - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWIrZ0F3SUJBZ0lRQjgzYWNLdEtGOHpOSWd4SjVPQSt6akFLQmdncWhrak9QUVFEQWpCek1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWNNQm9HQTFVRUF4TVRZMkV1CmIzSm5NaTVsZUdGdGNHeGxMbU52YlRBZUZ3MHhOekV3TURZeE1UUTRNREZhRncweU56RXdNRFF4TVRRNE1ERmEKTUZzeEN6QUpCZ05WQkFZVEFsVlRNUk13RVFZRFZRUUlFd3BEWVd4cFptOXlibWxoTVJZd0ZBWURWUVFIRXcxVApZVzRnUm5KaGJtTnBjMk52TVI4d0hRWURWUVFEREJaQlpHMXBia0J2Y21jeUxtVjRZVzF3YkdVdVkyOXRNRmt3CkV3WUhLb1pJemowQ0FRWUlLb1pJemowREFRY0RRZ0FFODZNR0tDNWFXSEFob0xMMmxFcDV6Y05IMEN3ZTIvSFIKVUNKQXVhSVM0bVRQN3VsbTFVR1RaYm9MMC9qRmdXN2JGWHphc3V5OUpTTWRRTXFnQlJzVVphTk5NRXN3RGdZRApWUjBQQVFIL0JBUURBZ2VBTUF3R0ExVWRFd0VCL3dRQ01BQXdLd1lEVlIwakJDUXdJb0Fna0NHUnZRN2N2cnlvClAwWlo3OWhWdFZoTFRkQkY2NHFPTFpoVytzbnh2dWd3Q2dZSUtvWkl6ajBFQXdJRFNBQXdSUUloQUtiUk5YUE4KcGZReS9xWEc3Zzdxbi8zclpYSko3VGF4U0RKUkt1MDJNVW1qQWlBMWJvdmhUSW1YeWlVbE9lM0RHeGkzejlTRQpLUTZMS0R5M1VjcGFMTC8xVWc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "Org2MSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNSRENDQWVxZ0F3SUJBZ0lSQU1YazFMLzZ2V1dRQkZ6eDJqdy9FSlF3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGN4TURBMk1URTBPREF4V2hjTk1qY3hNREEwTVRFME9EQXgKV2pCek1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFWk1CY0dBMVVFQ2hNUWIzSm5NaTVsZUdGdGNHeGxMbU52YlRFY01Cb0dBMVVFCkF4TVRZMkV1YjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEEwSUEKQk5URVNPaW1DaUFZMG9seWtEN1Z1RWN0WTNCb29EN2ZMRS83WUhsc3NLMlhaTEFQekVuODRxRk43VDI0UW5YdQovdFMwYVRLYmxuQmRWNEJWRnROSEZ1cWpYekJkTUE0R0ExVWREd0VCL3dRRUF3SUJwakFQQmdOVkhTVUVDREFHCkJnUlZIU1VBTUE4R0ExVWRFd0VCL3dRRk1BTUJBZjh3S1FZRFZSME9CQ0lFSUpBaGtiME8zTDY4cUQ5R1dlL1kKVmJWWVMwM1FSZXVLamkyWVZ2cko4YjdvTUFvR0NDcUdTTTQ5QkFNQ0EwZ0FNRVVDSVFDTEZIclZMcUdyUHhDMQovRGlWV3NKMGJSUGNhbVl2dzc5SWFMajVZczlBcEFJZ2R1RnU2TysrVFFYeUNGSGprVFppWVVua3ZSNU8vQVVWCmYyOXRiZzNpajlrPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNTVENDQWZDZ0F3SUJBZ0lSQU5LZ1Y3dDZmSGVEeTlmOVpqdnBkMk13Q2dZSUtvWkl6ajBFQXdJd2RqRUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIekFkQmdOVkJBTVRGblJzCmMyTmhMbTl5WnpJdVpYaGhiWEJzWlM1amIyMHdIaGNOTVRjeE1EQTJNVEUwT0RBeFdoY05NamN4TURBME1URTAKT0RBeFdqQjJNUXN3Q1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRQpCeE1OVTJGdUlFWnlZVzVqYVhOamJ6RVpNQmNHQTFVRUNoTVFiM0puTWk1bGVHRnRjR3hsTG1OdmJURWZNQjBHCkExVUVBeE1XZEd4elkyRXViM0puTWk1bGVHRnRjR3hsTG1OdmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDkKQXdFSEEwSUFCS0tXQXMwb3ZtMTg0ZXlSbFhWanlmSStrcGtWWUg1d3VERStmM3ZxQ0VWWU1EcUIyYURIN1RpcwpCN1hwZkVtQVRsaStERGQzcnFXKzNFeHdDSkVUQXlLalh6QmRNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WCkhTVUVDREFHQmdSVkhTVUFNQThHQTFVZEV3RUIvd1FGTUFNQkFmOHdLUVlEVlIwT0JDSUVJRWp1ZUJocXFmOC8KekowTmNHZWRIVUFTYThSU0pBeWs5UG5hYytXVzQ4SXZNQW9HQ0NxR1NNNDlCQU1DQTBjQU1FUUNJQmxHdWY0eQprUTZoMDdwdXBuS0Jtd3RvLzlmS3JRMWE2ZlVvOWcwMXRJSi9BaUIrSlJ2ck9oWlJBOElDYUVqN1c4WGRoK3Z4CjBjUERSVThieHE0Q1NHOVc3dz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ] - }, - "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": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDVENDQWJDZ0F3SUJBZ0lRTHBmNnNKL3o5dGQvVGRSd1A5RjFRakFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEF3TmpFeE5EZ3dNVm9YRFRJM01UQXdOREV4TkRnd01Wb3dWakVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4R2pBWUJnTlZCQU1NRVVGa2JXbHVRR1Y0WVcxd2JHVXVZMjl0TUZrd0V3WUhLb1pJemowQ0FRWUlLb1pJCnpqMERBUWNEUWdBRVVMRVQ0SGZUa21kRmc5bGNJbFc3SjFZb29hRXRjTVZDdTA1YytJc2hrU2NpZ0tOQ0h1SVMKcFp5dHVNWXpwejZpcmJFUkVENmhrUjZrTTJEd2ZQSTVjNk5OTUVzd0RnWURWUjBQQVFIL0JBUURBZ2VBTUF3RwpBMVVkRXdFQi93UUNNQUF3S3dZRFZSMGpCQ1F3SW9BZzJacUxneU5KMU85Yy96VjcxYkFnU2ZHNzlqR3JLSjhmCnJzY0MyYU03Q3Rrd0NnWUlLb1pJemowRUF3SURSd0F3UkFJZ2JwZ3pOd0lFd2ZKVVFIRGJBTWNxTUxSQ3B3ZncKRDVDZnNDVHh0eWFBSGdJQ0lDMThGSjZuZDlHY3V2TVh0UElqZ2NHTkI0UkR6MDVndVVDYWlTQWorczZ1Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K" - ], - "crypto_config": { - "identity_identifier_hash_function": "SHA256", - "signature_hash_family": "SHA2" - }, - "name": "OrdererMSP", - "root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNMakNDQWRXZ0F3SUJBZ0lRRVRyM1NIdWg0T0I1eEJEQnNzZ3JIVEFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTNNVEF3TmpFeE5EZ3dNVm9YRFRJM01UQXdOREV4TkRnd01Wb3dhVEVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4RkRBU0JnTlZCQW9UQzJWNFlXMXdiR1V1WTI5dE1SY3dGUVlEVlFRREV3NWpZUzVsZUdGdGNHeGxMbU52CmJUQlpNQk1HQnlxR1NNNDlBZ0VHQ0NxR1NNNDlBd0VIQTBJQUJFOEcwbG1Hck10QUlEWnhOWkV5VkIyb3hTZGYKZ2VTTkRTb2ErUTRTTFZ1MzNqMjlVWGc4Rzg4VmR4cXozK0p3cTBvRnc3VkZEcVV2eENqY1FjcWxIOEtqWHpCZApNQTRHQTFVZER3RUIvd1FFQXdJQnBqQVBCZ05WSFNVRUNEQUdCZ1JWSFNVQU1BOEdBMVVkRXdFQi93UUZNQU1CCkFmOHdLUVlEVlIwT0JDSUVJTm1haTRNalNkVHZYUDgxZTlXd0lFbnh1L1l4cXlpZkg2N0hBdG1qT3dyWk1Bb0cKQ0NxR1NNNDlCQU1DQTBjQU1FUUNJRTg0N2ZMSnBmandRT2Q1b3AvZFMwck5Ca21XenFFMEhtVVY4eHVrYS82ZwpBaUFCNXQrU0trWEtJK3cyWCsvdWtKRHVKbVI3MUpta1Z6NFdOOGtubUovcVJ3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=" - ], - "tls_root_certs": [ - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNOVENDQWR5Z0F3SUJBZ0lSQU5VS0FIRDZjWWE3VnpWbVhmMmNXZVV3Q2dZSUtvWkl6ajBFQXdJd2JERUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhGREFTQmdOVkJBb1RDMlY0WVcxd2JHVXVZMjl0TVJvd0dBWURWUVFERXhGMGJITmpZUzVsCmVHRnRjR3hsTG1OdmJUQWVGdzB4TnpFd01EWXhNVFE0TURGYUZ3MHlOekV3TURReE1UUTRNREZhTUd3eEN6QUoKQmdOVkJBWVRBbFZUTVJNd0VRWURWUVFJRXdwRFlXeHBabTl5Ym1saE1SWXdGQVlEVlFRSEV3MVRZVzRnUm5KaApibU5wYzJOdk1SUXdFZ1lEVlFRS0V3dGxlR0Z0Y0d4bExtTnZiVEVhTUJnR0ExVUVBeE1SZEd4elkyRXVaWGhoCmJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxaGtqT1BRTUJCd05DQUFUUDQyMEZ1L1puWUhzeVhxZi8KdmpteGhaNUcvbEdIZG5VL3c5NTkvekp2N0Y1SkQ3dThYbnBjL3BsdVZvNFJSaTlCQ2JPblBBZVJMY3RLRms0YQpPRFpzbzE4d1hUQU9CZ05WSFE4QkFmOEVCQU1DQWFZd0R3WURWUjBsQkFnd0JnWUVWUjBsQURBUEJnTlZIUk1CCkFmOEVCVEFEQVFIL01Da0dBMVVkRGdRaUJDRG5sQkpYdG1WNkZuTncrY1FnSlVCTWRuZGx6Mkw0RGYwTGR1T1IKeFlYamNqQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQUZpV3l0VFgwbGlydGM2ZTRVd3F6V0lJUG9DQ21ScHJBVQpsaTU4OCt4empBSWdSRktRUFlSKytnd3pmZnRBZjliQ2w1aEEwcGl4WE9zaXpYNzhXcGJvM0lBPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==" - ] - }, - "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" - }, - "ChannelRestrictions": { - "mod_policy": "Admins", - "version": "0" - }, - "ConsensusType": { - "mod_policy": "Admins", - "value": { - "type": "kafka" - }, - "version": "0" - }, - "KafkaBrokers": { - "mod_policy": "Admins", - "value": { - "brokers": [ - "kafka0:9092", - "kafka1:9092", - "kafka2:9092", - "kafka3:9092" - ] - }, - "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" - }, - "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-10-06T11:53:02.000Z", - "tx_id": "1a1b979dfa8cadf6aaa24c1e0f359ff6cca14741ee34f49da20685f6e8ec0cf0", - "type": 1, - "version": 1 - }, - "signature_header": { - "nonce": "KQ7WvlwB1FWFvDczyccUNwtDFgLtTQx7" - } - } - } - } - ] - }, - "header": { - "data_hash": "f+ZD7UKl2mu9mBts2pWzp4Y2cnyqZt2VQmA/DqqXLpY=", - "number": "0" - }, - "metadata": { - "metadata": [ - "", - "", - "", - "" - ] - } -} diff --git a/hyperledger_fabric/latest/kafka/configtx.yaml b/hyperledger_fabric/latest/kafka/configtx.yaml index 030bd31e..64d830b4 100644 --- a/hyperledger_fabric/latest/kafka/configtx.yaml +++ b/hyperledger_fabric/latest/kafka/configtx.yaml @@ -14,7 +14,7 @@ ################################################################################ Profiles: - TwoOrgsOrdererGenesis: + TwoOrgsOrdererGenesis: # Used to generate genesis block for system channel Orderer: <<: *OrdererDefaults Organizations: @@ -24,7 +24,8 @@ Profiles: Organizations: - *Org1 - *Org2 - TwoOrgsChannel: + + TwoOrgsChannel: # used for application channel Consortium: SampleConsortium Application: <<: *ApplicationDefaults @@ -32,6 +33,15 @@ Profiles: - *Org1 - *Org2 + ThreeOrgsChannel: # used for application channel + Consortium: SampleConsortium + Application: + <<: *ApplicationDefaults + Organizations: + - *Org1 + - *Org2 + - *Org3 + ################################################################################ # # Section: Organizations @@ -89,6 +99,23 @@ Organizations: - Host: peer0.org2.example.com Port: 7051 + - &Org3 + # DefaultOrg defines the organization which is used in the sampleconfig + # of the fabric.git development environment + Name: Org3MSP + + # ID to load the MSP definition as + ID: Org2MSP + + MSPDir: crypto-config/peerOrganizations/org3.example.com/msp + + AnchorPeers: + # AnchorPeers defines the location of peers which can be used + # for cross org gossip communication. Note, this value is only + # encoded in the genesis block in the Application section context + - Host: peer0.org3.example.com + Port: 7051 + ################################################################################ # # SECTION: Orderer @@ -150,4 +177,4 @@ Application: &ApplicationDefaults # Organizations is the list of orgs which are defined as participants on # the application side of the network - Organizations: + Organizations: \ No newline at end of file diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem deleted file mode 100644 index 6958f1a1..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/ca/d99a8b832349d4ef5cff357bd5b02049f1bbf631ab289f1faec702d9a33b0ad9_sk b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/ca/d99a8b832349d4ef5cff357bd5b02049f1bbf631ab289f1faec702d9a33b0ad9_sk deleted file mode 100644 index 19b7449c..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/ca/d99a8b832349d4ef5cff357bd5b02049f1bbf631ab289f1faec702d9a33b0ad9_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg1Kyiz70rSQvzYCQH -KUJaBk22Zq1/gXmL4UVcI8UIkbuhRANCAARPBtJZhqzLQCA2cTWRMlQdqMUnX4Hk -jQ0qGvkOEi1bt949vVF4PBvPFXcas9/icKtKBcO1RQ6lL8Qo3EHKpR/C ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem deleted file mode 100644 index 2993ef99..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem deleted file mode 100644 index 6958f1a1..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem deleted file mode 100644 index 9e24ec7f..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l -eGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ -BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh -bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh -bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/ -vjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a -ODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB -Af8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR -xYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU -li588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem deleted file mode 100644 index 2993ef99..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem deleted file mode 100644 index 6958f1a1..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d41e545484f47a5a8ce56bcab0ce59db768b0fa07d08062a4d1092808faa40ce_sk b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d41e545484f47a5a8ce56bcab0ce59db768b0fa07d08062a4d1092808faa40ce_sk deleted file mode 100644 index 0f9bfff6..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/d41e545484f47a5a8ce56bcab0ce59db768b0fa07d08062a4d1092808faa40ce_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgXjYb2Mo73AmvoZcH -jisXx99iAHcF6QujNrP1igqnS+OhRANCAAQVbbpz0UovxSNbTZimUetFG49ZR8Kf -MMcBcSN/uEgnFxbTwwJajmtNLPsWFjvCJ6Ekn3dy934h2TBg2lwbCgF6 ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem deleted file mode 100644 index 42fe6022..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC -Wo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr -KJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC -xgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem deleted file mode 100644 index 9e24ec7f..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l -eGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ -BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh -bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh -bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/ -vjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a -ODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB -Af8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR -xYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU -li588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt deleted file mode 100644 index 9e24ec7f..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l -eGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ -BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh -bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh -bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/ -vjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a -ODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB -Af8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR -xYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU -li588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt deleted file mode 100644 index 4db988be..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICWjCCAgCgAwIBAgIRAKvxROfg4kLPemd62DLs78gwCgYIKoZIzj0EAwIwbDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l -eGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJ -BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh -bmNpc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0C -AQYIKoZIzj0DAQcDQgAEe1RsmKcYvFvpJ1RYgeYVtoE3C90o7XiCQGZMjeSQ1BcB -Tb3vHRl2L50Wzqas3qZB6VILc0eXigq5M3a81iwZVKOBljCBkzAOBgNVHQ8BAf8E -BAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQC -MAAwKwYDVR0jBCQwIoAg55QSV7ZlehZzcPnEICVATHZ3Zc9i+A39C3bjkcWF43Iw -JwYDVR0RBCAwHoITb3JkZXJlci5leGFtcGxlLmNvbYIHb3JkZXJlcjAKBggqhkjO -PQQDAgNIADBFAiEAwlLdWYE1y10yXFdsE9FBjUbX1XLwizCiszIulVw6U5YCIDLN -z7Ka+bNz3w8+BbVF9nXjBTIM8uNnAUqCQ8Qr3WpE ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key deleted file mode 100644 index 1618b82f..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgMFQ9BEnc43ungk3U -oCus8LVYqDeIB3u5poh5shFN6N2hRANCAAR7VGyYpxi8W+knVFiB5hW2gTcL3Sjt -eIJAZkyN5JDUFwFNve8dGXYvnRbOpqzepkHpUgtzR5eKCrkzdrzWLBlU ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/tlsca/e7941257b6657a167370f9c42025404c767765cf62f80dfd0b76e391c585e372_sk b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/tlsca/e7941257b6657a167370f9c42025404c767765cf62f80dfd0b76e391c585e372_sk deleted file mode 100644 index ba865496..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/tlsca/e7941257b6657a167370f9c42025404c767765cf62f80dfd0b76e391c585e372_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgiN2KlaltvjNsvf/N -sSBS+AV7KkhDGx4tbDH8TCP9LxKhRANCAATP420Fu/ZnYHsyXqf/vjmxhZ5G/lGH -dnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4aODZs ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem deleted file mode 100644 index 9e24ec7f..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l -eGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ -BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh -bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh -bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/ -vjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a -ODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB -Af8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR -xYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU -li588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem deleted file mode 100644 index 2993ef99..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem deleted file mode 100644 index 6958f1a1..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/9e26c19bcb7266fb82a4be13da3ff435e5547cbda188c47b224019bc3eebb19a_sk b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/9e26c19bcb7266fb82a4be13da3ff435e5547cbda188c47b224019bc3eebb19a_sk deleted file mode 100644 index 6d6dc0fb..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/9e26c19bcb7266fb82a4be13da3ff435e5547cbda188c47b224019bc3eebb19a_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgBSN5omRWXefVgoYO -Lh90pSeyCxlhJCoOKoI37uWr9VihRANCAARQsRPgd9OSZ0WD2VwiVbsnViihoS1w -xUK7Tlz4iyGRJyKAo0Ie4hKlnK24xjOnPqKtsREQPqGRHqQzYPB88jlz ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem deleted file mode 100644 index 2993ef99..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem deleted file mode 100644 index 9e24ec7f..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l -eGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ -BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh -bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh -bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/ -vjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a -ODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB -Af8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR -xYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU -li588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt deleted file mode 100644 index 9e24ec7f..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l -eGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ -BgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh -bmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh -bXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/ -vjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a -ODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB -Af8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR -xYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU -li588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt deleted file mode 100644 index cc5c2fbb..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICLDCCAdKgAwIBAgIQds5ymDntv9leRwG7kEUpOzAKBggqhkjOPQQDAjBsMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xGjAYBgNVBAMTEXRsc2NhLmV4 -YW1wbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkG -A1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFu -Y2lzY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAE+8mY9KDb7DeQBib0s3q7quMGsgoUtDONEAgRGO3qadzXpc4P -b8mwnQUgUft4Oxu5FUIXwyaC9K7CZZEPMyZE3aNsMGowDgYDVR0PAQH/BAQDAgWg -MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAMBgNVHRMBAf8EAjAAMCsG -A1UdIwQkMCKAIOeUEle2ZXoWc3D5xCAlQEx2d2XPYvgN/Qt245HFheNyMAoGCCqG -SM49BAMCA0gAMEUCIQC7WOwmUz/3dPLdHc4KBLfT9J73EQgJPcTsthCUQz70qgIg -bKA/1AAdGJADWrqS8Vl2oc6UFqmWKp3X8Hp1rcdVRGc= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key deleted file mode 100644 index 27735ffa..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgL6/QEsk637g9X8i7 -ORfvjk2RyQ8wDUJjVft+JNz6nRqhRANCAAT7yZj0oNvsN5AGJvSzeruq4wayChS0 -M40QCBEY7epp3Nelzg9vybCdBSBR+3g7G7kVQhfDJoL0rsJlkQ8zJkTd ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem deleted file mode 100644 index 0287d58b..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/ca/fe7d09e5b2e2f7b1cb0a95e2a810e2890db56fb93db3295a300d74df76a9f37b_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/ca/fe7d09e5b2e2f7b1cb0a95e2a810e2890db56fb93db3295a300d74df76a9f37b_sk deleted file mode 100644 index 49b9dea6..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/ca/fe7d09e5b2e2f7b1cb0a95e2a810e2890db56fb93db3295a300d74df76a9f37b_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgYTY4SbL9LH+Iv2go -m37y/41NaUDIw4pYbezLfWIVWjehRANCAAQCAN/oHcQKPw+2oxncVps0DFjTHLxT -fAVk1+XSsGeN2RpF6t2c2HOm/nSgFGyimFYiviMTASft3R9B4aR7FDnp ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem deleted file mode 100644 index f2c41cc4..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem deleted file mode 100644 index 0287d58b..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem deleted file mode 100644 index f2c41cc4..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem deleted file mode 100644 index 0287d58b..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/0ca0b88f04fde77c473bfb05f27a008724fda5e03e799aaa553972e525d68ccf_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/0ca0b88f04fde77c473bfb05f27a008724fda5e03e799aaa553972e525d68ccf_sk deleted file mode 100644 index abadd5db..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/0ca0b88f04fde77c473bfb05f27a008724fda5e03e799aaa553972e525d68ccf_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgXc7hYyTb97LYFQd1 -Ae0nCz9//G3ZiDjUdZC43Rvcwx+hRANCAARZQFn/OHn2nSi29nrvuop3t4bLJXW6 -5fH5C0QDYbg4bqS8XUwBQLeHGcLJo9JV4eQ3AsK8kEPtVf4McFdo4ene ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem deleted file mode 100644 index 8f8b1094..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx -+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL -CpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E -PS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd -q9AUABhhA3EeNiD9 ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt deleted file mode 100644 index 90419725..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICZzCCAg2gAwIBAgIQHbIWg9FIT8jXTuw0OycKtjAKBggqhkjOPQQDAjB2MQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4 -MDFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH -Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2FcCq5BIRrWTUNbiTM8acUnk2CA4 -4jKuBdvf03EcDBdbChysGUUYBcucGNW1rBO6D+WASwqeSw0l5xFIKV57VaOBlzCB -lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg66UHGt6229Wq5BBT3Kpo5uqkWZzX -vquSr4rMms1KHKgwKAYDVR0RBCEwH4IWcGVlcjAub3JnMS5leGFtcGxlLmNvbYIF -cGVlcjAwCgYIKoZIzj0EAwIDSAAwRQIhANggxhcP3B47SXUOvPcN2C/8+eoRsNUo -iiXw3XumfHPWAiBtbWsCzWQMzkPtYXCuhGknzeYihE/YXwmgLwH+b/YAQw== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key deleted file mode 100644 index 8ab9aa43..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgfsOd41B4YwGwestm -9dFmAhParWTGqSa+dKBCGbPrrlehRANCAATYVwKrkEhGtZNQ1uJMzxpxSeTYIDji -Mq4F29/TcRwMF1sKHKwZRRgFy5wY1bWsE7oP5YBLCp5LDSXnEUgpXntV ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem deleted file mode 100644 index f2c41cc4..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem deleted file mode 100644 index 0287d58b..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/5f94fe0c31a0b7186f2883b23bae8d67620a5b8a62db848277378b4d41ffbdbd_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/5f94fe0c31a0b7186f2883b23bae8d67620a5b8a62db848277378b4d41ffbdbd_sk deleted file mode 100644 index 26b9e39e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/5f94fe0c31a0b7186f2883b23bae8d67620a5b8a62db848277378b4d41ffbdbd_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgW/PwB1PsxLqJfg79 -PjomQk+2S7Xu/C9tV4CCDyzDTqahRANCAARMU7ro48uZMaiprndO42OIaF8/fwBP -tCVF5xIssdVFnIxJE5hXSsUlzVR1b+8F5yzPT1D/dmiw1iSTFC0j5m09 ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem deleted file mode 100644 index ba502e7d..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQGO4ATKxOEUfdAIWZu+CqijAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAETFO66OPLmTGoqa53TuNjiGhfP38AT7Ql -RecSLLHVRZyMSROYV0rFJc1UdW/vBecsz09Q/3ZosNYkkxQtI+ZtPaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL -CpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDSAAwRQIhAI4Yu+O/ -HnUJUkl0doWvJOl0ucN2WmrQRyq1HCsz4UPCAiAPZPia+mR3Rf3qDCD59Rfp2jLu -FxzRCkA8IWOQaVw0ZA== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt deleted file mode 100644 index a0bab3f2..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICZzCCAg2gAwIBAgIQEjDVXJre5E4Xsaht7lh+kDAKBggqhkjOPQQDAjB2MQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4 -MDFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH -Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcxLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEKAvoiQ0cyXIorsApqSH4b+K+j1x2 -NxJ8Gdm45fBoUNtWjMWwWRICDTcMy8oMN4HnDJRkx1cO/rLeSAifwgJGk6OBlzCB -lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg66UHGt6229Wq5BBT3Kpo5uqkWZzX -vquSr4rMms1KHKgwKAYDVR0RBCEwH4IWcGVlcjEub3JnMS5leGFtcGxlLmNvbYIF -cGVlcjEwCgYIKoZIzj0EAwIDSAAwRQIhAPsVq6rBAuaQPzKFPBJFOupw5zbC7Kqw -k5MmxBdNWwthAiBZ/tPbGuadMtAYStz9bDCNk7AAOhKHx31IasSOD3rQ5g== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key deleted file mode 100644 index 8e9b8f83..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgGnLgkhI78moO/vuJ -OKaXWmTdHlQ2K91JBHeI5qH6gqGhRANCAAQoC+iJDRzJciiuwCmpIfhv4r6PXHY3 -EnwZ2bjl8GhQ21aMxbBZEgINNwzLygw3gecMlGTHVw7+st5ICJ/CAkaT ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/tlsca/eba5071adeb6dbd5aae41053dcaa68e6eaa4599cd7beab92af8acc9acd4a1ca8_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/tlsca/eba5071adeb6dbd5aae41053dcaa68e6eaa4599cd7beab92af8acc9acd4a1ca8_sk deleted file mode 100644 index 0cf25d72..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/tlsca/eba5071adeb6dbd5aae41053dcaa68e6eaa4599cd7beab92af8acc9acd4a1ca8_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg4vUlbvhrM25kWCLq -tbFf5ixeocGWDKLZ/QMhbIy/rzChRANCAAScz1TG3dWfXobuEmjQMp6Imu5YvkK3 -C5Y8nclfmR3faLLVtPKDFDEMq+fIJbO14Iq1QM5P4SOMX7hnG/YqJfEC ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem deleted file mode 100644 index f2c41cc4..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem deleted file mode 100644 index 0287d58b..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/62c7870b3f7a8e8eb231ec83615cc2722e9cfab6405191cbbcffcb968f408f7b_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/62c7870b3f7a8e8eb231ec83615cc2722e9cfab6405191cbbcffcb968f408f7b_sk deleted file mode 100644 index 5cda5903..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/62c7870b3f7a8e8eb231ec83615cc2722e9cfab6405191cbbcffcb968f408f7b_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgVtSHWzv4uUYIQAIA -m8/3qxAnY3KcQPd8WIEA/BmESHuhRANCAATZSMn7ugwoVYz6bt/41wAVcENX3XjM -diScg/VsYxVsTykEupUb9wTJECBesiHAG1GFMv07bsQMJINnnBmFi3AY ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem deleted file mode 100644 index f2c41cc4..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt deleted file mode 100644 index 2062a893..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICOzCCAeKgAwIBAgIRAM10tY6QdN2tWiFCVLWVxfMwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABM9aEJG0Mdr6iZehL+vW3CyZFQIb -56UuElO4Ar5k7pA2qV7PPFdQdPXvoo+u+zX0tLhZJobPiZkofU5kzAcjdGujbDBq -MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCDrpQca3rbb1arkEFPcqmjm6qRZnNe+ -q5KvisyazUocqDAKBggqhkjOPQQDAgNHADBEAiBs+NHI5jrinnA1Fc8Ldf/l3Gjt -bIgywk5IlDBuKtQ9kwIgadezrYNc0tDLLNYn6C8uQRFZ5aA9akqQvswcAiMvZvQ= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key deleted file mode 100644 index ff069b13..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgQgTdnfFekC7xc+Nw -q12nx3+GMyQRvcPllSsgdYkxfJuhRANCAATPWhCRtDHa+omXoS/r1twsmRUCG+el -LhJTuAK+ZO6QNqlezzxXUHT176KPrvs19LS4WSaGz4mZKH1OZMwHI3Rr ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem deleted file mode 100644 index ce7d6f76..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAO1FTsWOwrKYQf9XOecdgF0wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMKmdBW3MjIw9oSvb8SSFJ9BMjnW6119 -OEPKJckiq9NjhXWsOGJWnITEPDBxfTWgHSTvBEG/2pJeMYKgkeaviUejTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0cAMEQCIGxqKwvT -HL96lVa01VZXD8WyKUnuqnq/iAqlfTbnrCa4AiADkOO5dQO0Zh4/9M+k0hnPO0IF -1UiGzMGy1913bbqgag== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem deleted file mode 100644 index 0287d58b..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/fbfdabb5a57ee0c7de7a10827b83a7009962f4112112596dd7dc6647a0323da6_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/fbfdabb5a57ee0c7de7a10827b83a7009962f4112112596dd7dc6647a0323da6_sk deleted file mode 100644 index 380740cd..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/fbfdabb5a57ee0c7de7a10827b83a7009962f4112112596dd7dc6647a0323da6_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgjpLbDrCebpWH03MZ -iw1m9FjR+ZpBwTMYfzD3QkRBY6qhRANCAATCpnQVtzIyMPaEr2/EkhSfQTI51utd -fThDyiXJIqvTY4V1rDhiVpyExDwwcX01oB0k7wRBv9qSXjGCoJHmr4lH ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem deleted file mode 100644 index ce7d6f76..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAO1FTsWOwrKYQf9XOecdgF0wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABMKmdBW3MjIw9oSvb8SSFJ9BMjnW6119 -OEPKJckiq9NjhXWsOGJWnITEPDBxfTWgHSTvBEG/2pJeMYKgkeaviUejTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0cAMEQCIGxqKwvT -HL96lVa01VZXD8WyKUnuqnq/iAqlfTbnrCa4AiADkOO5dQO0Zh4/9M+k0hnPO0IF -1UiGzMGy1913bbqgag== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt deleted file mode 100644 index be2ba01e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr -58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV -quQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU -9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ -oiYOMxdnAc7H4NQqdww= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt deleted file mode 100644 index 64588533..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICOzCCAeGgAwIBAgIQTvZwJWSM9CEGPlNM7vWQcTAKBggqhkjOPQQDAjB2MQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4 -MDFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH -Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZVc2VyMUBvcmcxLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEqEhmiIys2HYZqyqVqYJy91SVtXsM -doH1rqEC9fLUY+pq3hbyOGV7Q1DosRyWY4pFz2hhyKlzq3A5IQ+UR0SFxKNsMGow -DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIOulBxrettvVquQQU9yqaObqpFmc176r -kq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCuV2kQmNpq0C6qEzi5K3n1WjmP -mavTfonw1h4uE4p+QgIgA/FQZa3DEshI8sUjMkvLirJ/ayAnxC7zNTTAAQbHJ8I= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key deleted file mode 100644 index 91fe5eba..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgUBm/6B7gGNowBeHk -PijOiJg36FKlR/KfoUk91JANlTGhRANCAASoSGaIjKzYdhmrKpWpgnL3VJW1ewx2 -gfWuoQL18tRj6mreFvI4ZXtDUOixHJZjikXPaGHIqXOrcDkhD5RHRIXE ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/ca/902191bd0edcbebca83f4659efd855b5584b4dd045eb8a8e2d9856fac9f1bee8_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/ca/902191bd0edcbebca83f4659efd855b5584b4dd045eb8a8e2d9856fac9f1bee8_sk deleted file mode 100644 index ecb4b408..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/ca/902191bd0edcbebca83f4659efd855b5584b4dd045eb8a8e2d9856fac9f1bee8_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgDv4t7woK+aYavvyB -X9rxBnHFUCFwu+a1hqrcZhauGF6hRANCAATUxEjopgogGNKJcpA+1bhHLWNwaKA+ -3yxP+2B5bLCtl2SwD8xJ/OKhTe09uEJ17v7UtGkym5ZwXVeAVRbTRxbq ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem deleted file mode 100644 index 77b75a6e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem deleted file mode 100644 index 3b60c434..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem deleted file mode 100644 index 77b75a6e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem deleted file mode 100644 index 3b60c434..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem deleted file mode 100644 index 77b75a6e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/6012d7e19b1b42848e19a541984ad24080ffcdb17851eb405eda9be003e3b4df_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/6012d7e19b1b42848e19a541984ad24080ffcdb17851eb405eda9be003e3b4df_sk deleted file mode 100644 index c953d09c..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/6012d7e19b1b42848e19a541984ad24080ffcdb17851eb405eda9be003e3b4df_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgoaegIwF/3tXe6nHO -96fGpUoAxL7lQk+m0ZVfoFCV0f6hRANCAAQIQZbdg7YDLwphbnWq53wKD8vc/Li4 -Q1O7XDsWvkPsRxfBRuguYL+DHtP7KZvbSX/oLFvjHhkFYSYFR9UMp6AQ ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem deleted file mode 100644 index 49de2a65..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQLYx0XuJEmvw8vk9KyfA7pjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAECEGW3YO2Ay8KYW51qud8Cg/L3Py4uENT -u1w7Fr5D7EcXwUboLmC/gx7T+ymb20l/6Cxb4x4ZBWEmBUfVDKegEKNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhANdbrWqS -FRa1IerkiL948M7P/40yq6SgvgfPXQhdpI8GAiAUAR/ySLei3EkJjFGHEJLQYOaN -PLHHoaZ4XdkuktZ68A== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt deleted file mode 100644 index 67604a58..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICZzCCAg2gAwIBAgIQVCtsxfNFMrO7k10aWaGyajAKBggqhkjOPQQDAjB2MQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4 -MDFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH -Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEprpUqHe3MNUIQKABpZl2JkqQTnWd -+OEYQIw9JnPRdh812ojD4mdRpohamq4uNn5nSVM1FBCUNb8kJwHHQyL4u6OBlzCB -lDAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMC -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgSO54GGqp/z/MnQ1wZ50dQBJrxFIk -DKT0+dpz5Zbjwi8wKAYDVR0RBCEwH4IWcGVlcjAub3JnMi5leGFtcGxlLmNvbYIF -cGVlcjAwCgYIKoZIzj0EAwIDSAAwRQIhAPclnTIyRkxuOwcGROZGYSS2FbWMsilK -KIi5V3AQi8weAiBbBFaiAsbwUq6cXorseFgmzBDTOixDA1i91kHpXqnv6g== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key deleted file mode 100644 index 4b20d3c9..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg/AtFXfGQGBa3Lr3p -PuFIPayjzZD+tTGokmKXXLnIBLuhRANCAASmulSod7cw1QhAoAGlmXYmSpBOdZ34 -4RhAjD0mc9F2HzXaiMPiZ1GmiFqari42fmdJUzUUEJQ1vyQnAcdDIvi7 ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem deleted file mode 100644 index 3b60c434..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem deleted file mode 100644 index 77b75a6e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/eba0db6b1730f82c48ef5eccb99fda47600e7fdf69a484a964398bd99bb1baae_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/eba0db6b1730f82c48ef5eccb99fda47600e7fdf69a484a964398bd99bb1baae_sk deleted file mode 100644 index dd681ba3..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/eba0db6b1730f82c48ef5eccb99fda47600e7fdf69a484a964398bd99bb1baae_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg7hBjhsqyui2EIcIB -BJZXh9xhGqGqLZUfYntqUf3qHDmhRANCAAS/9Sd/v7xGRGPMjHL12DgFaCckQcxs -WBN0Aop8TY8JDTmrPjkNFrnEdD//fKBdZPvNiTPiLGE02Gi+KmjXop5R ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem deleted file mode 100644 index 63c40096..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQTvQQRBhFCDJLC4omWQoTYjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEv/Unf7+8RkRjzIxy9dg4BWgnJEHMbFgT -dAKKfE2PCQ05qz45DRa5xHQ//3ygXWT7zYkz4ixhNNhovipo16KeUaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAI0+JLdE -bxV1tpDt3FSLoA0oo/BL52nna/cLvVOlLOEPAiArOaLD54J42aiUnFgojYnzBsI7 -tzlEXfeTXQIMEwjz3w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt deleted file mode 100644 index 27cbb0cd..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICaDCCAg6gAwIBAgIRAMm1kSHbqCTCTp1iH0TQ6wcwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMi5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABGlDeiGmDITY+eKG1+bNocR75LFn -gu3b5/mocalMxhDKmxZDNM88B6fy0pZ7BrWE7BQW7kIqBphZqPgK5cYE8HOjgZcw -gZQwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcD -AjAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIEjueBhqqf8/zJ0NcGedHUASa8RS -JAyk9Pnac+WW48IvMCgGA1UdEQQhMB+CFnBlZXIxLm9yZzIuZXhhbXBsZS5jb22C -BXBlZXIxMAoGCCqGSM49BAMCA0gAMEUCIQD2uGDHbzodVQHX0xuRFrsmzob1kWZs -nM7IKelVAKPKuQIgEPxH/xwtEEavQ1UTOlpXPJ2wgpOFrjyDfLyMdWy2ogo= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key deleted file mode 100644 index 56e3aa1f..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgb8j/KNF7RIZoyXQ4 -6MBpKSXK4xFpjo7Iu6fCyYCkdhehRANCAARpQ3ohpgyE2PnihtfmzaHEe+SxZ4Lt -2+f5qHGpTMYQypsWQzTPPAen8tKWewa1hOwUFu5CKgaYWaj4CuXGBPBz ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/tlsca/48ee78186aa9ff3fcc9d0d70679d1d40126bc452240ca4f4f9da73e596e3c22f_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/tlsca/48ee78186aa9ff3fcc9d0d70679d1d40126bc452240ca4f4f9da73e596e3c22f_sk deleted file mode 100644 index 69533224..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/tlsca/48ee78186aa9ff3fcc9d0d70679d1d40126bc452240ca4f4f9da73e596e3c22f_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgt7jr465ogcfs8eDh -Ad9YZajiidp0xX5wDLK+3YcE3h2hRANCAASilgLNKL5tfOHskZV1Y8nyPpKZFWB+ -cLgxPn976ghFWDA6gdmgx+04rAe16XxJgE5Yvgw3d66lvtxMcAiREwMi ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem deleted file mode 100644 index 3b60c434..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem deleted file mode 100644 index 77b75a6e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/dcf87423d7731a50c9e462e2bc357d1e83723458b1fba06491e730847dbf33e9_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/dcf87423d7731a50c9e462e2bc357d1e83723458b1fba06491e730847dbf33e9_sk deleted file mode 100644 index 685ea502..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/dcf87423d7731a50c9e462e2bc357d1e83723458b1fba06491e730847dbf33e9_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgtqSys3MjzZ6dldh6 -ITehdHI+jBtzgQUnAwbt+DZp7q+hRANCAATzowYoLlpYcCGgsvaUSnnNw0fQLB7b -8dFQIkC5ohLiZM/u6WbVQZNlugvT+MWBbtsVfNqy7L0lIx1AyqAFGxRl ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem deleted file mode 100644 index 3b60c434..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt deleted file mode 100644 index 264b4329..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICOjCCAeGgAwIBAgIQT/evYYoYj1bIZHy/L8DXADAKBggqhkjOPQQDAjB2MQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0GA1UEAxMWdGxz -Y2Eub3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4 -MDFaMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQH -Ew1TYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29t -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEFNxQNezC3my5AsFU7i88jG50ghJ0 -CrhR+tgxFY7vJnHKw4dSu03yjqFNHjquM8CoV9IYICR7oVa5/OCxAFFg1aNsMGow -DgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM -BgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIEjueBhqqf8/zJ0NcGedHUASa8RSJAyk -9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIFDyMU0OUYJFZ/Pl3B9h9HNGbvks -hP9ALXEbIAb4/DwsAiBIYAiE7mB/2bMBIlgBwdCQ+tqqyk/jtJKSbrlUaZSkDw== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key deleted file mode 100644 index ee1e1ff2..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgONt11aO0+xLbwqc6 -t9bkUYxqCVVlwlIvbC2ukW6erdyhRANCAAQU3FA17MLebLkCwVTuLzyMbnSCEnQK -uFH62DEVju8mccrDh1K7TfKOoU0eOq4zwKhX0hggJHuhVrn84LEAUWDV ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem deleted file mode 100644 index 287026f2..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRANP0OqKBSuMYL1FQOZ6JtsEwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOC4IiEuMeBVa3Ru8XxwLseqUVltTbQ7 -dNdxgIjW6i5RZ8ozxbIzUBAwC5szYS3Pb4R00ha0AIk9Xmr/4ghWolWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIJAhkb0O3L68 -qD9GWe/YVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0cAMEQCIAp4tOjX -IyICOlh9HbCIUIKD34kiAtH7ht9mqoIQvjvGAiB/vqwMfNuKzUMF2vH+3dPI0i5o -nlIqoSRUXf57+o485g== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem deleted file mode 100644 index 77b75a6e..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/32b86c678e9775484551d3eb149e312322563a828cfa8a0d118f38694cd2ae90_sk b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/32b86c678e9775484551d3eb149e312322563a828cfa8a0d118f38694cd2ae90_sk deleted file mode 100644 index a2629efb..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/32b86c678e9775484551d3eb149e312322563a828cfa8a0d118f38694cd2ae90_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgx5B3VgJGAoQgt1Rt -pfFqzp0IkxUvFT0c7I+ltVLRDB+hRANCAATguCIhLjHgVWt0bvF8cC7HqlFZbU20 -O3TXcYCI1uouUWfKM8WyM1AQMAubM2Etz2+EdNIWtACJPV5q/+IIVqJV ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem deleted file mode 100644 index 287026f2..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRANP0OqKBSuMYL1FQOZ6JtsEwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABOC4IiEuMeBVa3Ru8XxwLseqUVltTbQ7 -dNdxgIjW6i5RZ8ozxbIzUBAwC5szYS3Pb4R00ha0AIk9Xmr/4ghWolWjTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIJAhkb0O3L68 -qD9GWe/YVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0cAMEQCIAp4tOjX -IyICOlh9HbCIUIKD34kiAtH7ht9mqoIQvjvGAiB/vqwMfNuKzUMF2vH+3dPI0i5o -nlIqoSRUXf57+o485g== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt deleted file mode 100644 index 3e2fc940..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G -A1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49 -AwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis -B7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV -HSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/ -zJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y -kQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx -0cPDRU8bxq4CSG9W7w== ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt deleted file mode 100644 index c558c169..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICOzCCAeKgAwIBAgIRAIm6yCq+ZkheJTo6CMnTgxwwCgYIKoZIzj0EAwIwdjEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs -c2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0 -ODAxWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE -BxMNU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWVXNlcjFAb3JnMi5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABL0NlgUq/NxbY0p4pvBfFE9H5YXX -hZ/7CM2kNmIaSNeiYFTD/JNaG0HwiFqL0IrwbYd5DtldDD8kxGiMt9R9wG2jbDBq -MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIw -DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCBI7ngYaqn/P8ydDXBnnR1AEmvEUiQM -pPT52nPlluPCLzAKBggqhkjOPQQDAgNHADBEAiBioctHsA2U0MW4F1WjQudlRguL -LmxMVLF4v69cx8gapgIgGfLELp0N23cARGriXQzlgRqnhkCRMXQ9dXZIj486L4c= ------END CERTIFICATE----- diff --git a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key b/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key deleted file mode 100644 index 421f7a3c..00000000 --- a/hyperledger_fabric/latest/kafka/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgUpXlE2BHlbWvu3jO -GkoUOzQXCzfmbZSc5EnpcyR99DChRANCAAS9DZYFKvzcW2NKeKbwXxRPR+WF14Wf -+wjNpDZiGkjXomBUw/yTWhtB8Ihai9CK8G2HeQ7ZXQw/JMRojLfUfcBt ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/kafka/gen_artifacts.sh b/hyperledger_fabric/latest/kafka/gen_artifacts.sh deleted file mode 100644 index bffdd97d..00000000 --- a/hyperledger_fabric/latest/kafka/gen_artifacts.sh +++ /dev/null @@ -1,58 +0,0 @@ -#! /bin/bash - -GEN_IMG=yeasy/hyperledger-fabric:latest -GEN_CONTAINER=generator -CFG_DIR=/etc/hyperledger/fabric -TMP_DIR=/tmp -ARTIFACTS_DIR=$TMP_DIR/channel-artifacts -CHANNEL_NAME=businesschannel - -echo "Clean potential existing container $GEN_CONTAINER" -[ "$(docker ps -a | grep $GEN_CONTAINER)" ] && docker rm -f $GEN_CONTAINER - -echo "Remove existing artifacts" -rm -rf crypto-config channel-artifacts - -echo "Starting container $GEN_CONTAINER in background" -docker run \ - -d -it \ - --name $GEN_CONTAINER \ - $GEN_IMG bash -c 'while true; do sleep 20171001; done' - -echo "Create the $ARTIFACTS_DIR path" -docker exec -it $GEN_CONTAINER \ - mkdir -p $ARTIFACTS_DIR - -echo "Copy crypto-config.yaml and configtx.yaml into $GEN_CONTAINER:/tmp" -docker cp ./crypto-config.yaml $GEN_CONTAINER:$CFG_DIR -docker cp ./configtx.yaml $GEN_CONTAINER:$CFG_DIR - -echo "Generating crypto-config and export" -docker exec -it $GEN_CONTAINER \ - cryptogen generate --config=$CFG_DIR/crypto-config.yaml --output $TMP_DIR/crypto-config -echo "Export crypto-config to local" -docker cp $GEN_CONTAINER:$TMP_DIR/crypto-config ./ - -echo "Copy crypto-config to the config path" -docker exec -it $GEN_CONTAINER \ - cp -r $TMP_DIR/crypto-config $CFG_DIR - -echo "Generating orderer genesis block file" -docker exec -it $GEN_CONTAINER \ - configtxgen -profile TwoOrgsOrdererGenesis -outputBlock $ARTIFACTS_DIR/orderer.genesis.block - -echo "Create the new application channel tx" -docker exec -it $GEN_CONTAINER \ - configtxgen -profile TwoOrgsChannel -outputCreateChannelTx $ARTIFACTS_DIR/channel.tx -channelID ${CHANNEL_NAME} - -echo "Creating the anchor peer configuration tx" -docker exec -it $GEN_CONTAINER \ - configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate $ARTIFACTS_DIR/Org1MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org1MSP -docker exec -it $GEN_CONTAINER \ - configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate $ARTIFACTS_DIR/Org2MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org2MSP - -echo "Export $ARTIFACTS_DIR to local" -docker cp $GEN_CONTAINER:$ARTIFACTS_DIR ./ - -echo "Remove the container $GEN_CONTAINER" -docker rm -f $GEN_CONTAINER \ No newline at end of file diff --git a/hyperledger_fabric/latest/kafka/logs/dev_orderer.log b/hyperledger_fabric/latest/kafka/logs/dev_orderer.log deleted file mode 100644 index c516a77c..00000000 --- a/hyperledger_fabric/latest/kafka/logs/dev_orderer.log +++ /dev/null @@ -1,3934 +0,0 @@ -Remove /go/bin/orderer -Building fabric orderer -# github.com/hyperledger/fabric/orderer -/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/libltdl.a(dlopen.o): In function `vm_open': -(.text+0x5d): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/tmp/go-link-942410609/000000.o: In function `_cgo_b0c710f30cfd_C2func_getaddrinfo': -/tmp/go-build/net/_obj/cgo-gcc-prolog:46: warning: Using 'getaddrinfo' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -[001 10-12 08:31:51.65 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -[002 10-12 08:31:51.65 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 10-12 08:31:51.66 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -[004 10-12 08:31:51.66 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 10-12 08:31:51.66 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -[006 10-12 08:31:51.66 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 10-12 08:31:51.66 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -[008 10-12 08:31:51.66 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 10-12 08:31:51.66 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -[00a 10-12 08:31:51.67 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 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -[00c 10-12 08:31:51.67 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 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -[00e 10-12 08:31:51.67 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 10-12 08:31:51.67 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 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP -> DEBU Returning existing local MSP -[011 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup -> DEBU Setting up MSP instance OrdererMSP -[012 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[013 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[014 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[015 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[016 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[017 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[018 10-12 08:31:51.67 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[019 10-12 08:31:51.68 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[01a 10-12 08:31:51.68 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC -Wo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr -KJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC -xgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP ------END CERTIFICATE----- -[01b 10-12 08:31:51.68 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [d41e545484f47a5a8ce56bcab0ce59db768b0fa07d08062a4d1092808faa40ce] at [/var/hyperledger/orderer/msp/keystore/d41e545484f47a5a8ce56bcab0ce59db768b0fa07d08062a4d1092808faa40ce_sk]... -[01c 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC -Wo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr -KJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC -xgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP ------END CERTIFICATE----- -[01d 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[01e 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main -> DEBU logging level and localMSP initialized -[01f 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> DEBU Start() -[020 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU file Ledger dir: /var/hyperledger/production/orderer -[021 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New -> DEBU New a file ledger under /var/hyperledger/production/orderer -[022 10-12 08:31:51.69 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/] -[023 10-12 08:31:51.69 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 -[024 10-12 08:31:51.69 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 -[025 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.createSubDir -> DEBU createSubDir: parentDir=/var/hyperledger/production/orderer, subDir=chains -[026 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.createSubDir -> DEBU Create chains sub-dir -[027 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar -> DEBU There is no chain, hence we must be in bootstrapping -[028 10-12 08:31:51.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel -> DEBU Create system channel with cfg=&{General:{LedgerType:file ListenAddress:0.0.0.0 ListenPort:7050 TLS:{Enabled:true PrivateKey:/var/hyperledger/orderer/tls/server.key Certificate:/var/hyperledger/orderer/tls/server.crt RootCAs:[/var/hyperledger/orderer/tls/ca.crt] ClientAuthEnabled:false ClientRootCAs:[]} GenesisMethod:file GenesisProfile:TwoOrgsOrdererGenesis SystemChannel:testchainid GenesisFile:/var/hyperledger/orderer/orderer.genesis.block Profile:{Enabled:false Address:0.0.0.0:6060} LogLevel:DEBUG LogFormat:%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message} LocalMSPDir:/var/hyperledger/orderer/msp LocalMSPID:OrdererMSP BCCSP:0xc4203a4800} FileLedger:{Location:/var/hyperledger/production/orderer Prefix:hyperledger-fabric-ordererledger} RAMLedger:{HistorySize:1000} Kafka:{Retry:{ShortInterval:1s ShortTotal:30s LongInterval:5m0s LongTotal:12h0m0s NetworkTimeouts:{DialTimeout:10s ReadTimeout:10s WriteTimeout:10s} Metadata:{RetryMax:3 RetryBackoff:250ms} Producer:{RetryMax:3 RetryBackoff:100ms} Consumer:{RetryBackoff:2s}} Verbose:true Version:{version:[0 10 2 0]} TLS:{Enabled:false PrivateKey: Certificate: RootCAs:[] ClientAuthEnabled:false ClientRootCAs:[]}} Debug:{BroadcastTraceDir: DeliverTraceDir:}}, ledgerFactory=&{blkstorageProvider:0xc4200d22e0 ledgers:map[] mutex:{state:0 sema:0}} -[029 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate -> DEBU fileLedgerFactory will GetOrCreate testchainid -[02a 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block Mgr for ledger: testchainid -[02b 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU conf.getLedgerBlockDir=/var/hyperledger/production/orderer/chains/testchainid -[02c 10-12 08:31:51.70 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/] -[02d 10-12 08:31:51.70 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 -[02e 10-12 08:31:51.70 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 -[02f 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU loadExisting checkpointInfo= -[030 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU No checkpointInfo found, saveCurrentInfo latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] to leveldb -[031 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -[032 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000]: exists=[false], size=[0] -[033 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[034 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[035 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -[036 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -2017/10/12 08:31:51 proto: textWriter unindented too far -2017/10/12 08:31:51 proto: textWriter unindented too far -[037 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append -> DEBU Add block to ledger: header:<6:39 0:"\x00" } 0:4 4:127 1084:/* unknown wire type 6 */ 1069:3177962149 435:108 232139888987:/* unexpected EOF */ } 1637:/* unexpected EOF */ 12:63 1:/* unknown wire type 6 */ 94581:/* unexpected EOF */ /* unexpected EOF */ >data:<1:"\ny\n[\b\x01\x10\x01\x1a\x06\b\x9e\xdd\xdd\xce\x05\"\vtestchainid*@1a1b979dfa8cadf6aaa24c1e0f359ff6cca14741ee34f49da20685f6e8ec0cf0\x12\x1a\x12\x18)\x0e־\\\x01\xd4U\x85\xbc73\xc9\xc7\x147\vC\x16\x02\xedM\f{\x12\x9dF\n\x9aF\x12\x97F\x12\x95,\n\vConsortiums\x12\x85,\x12\xba+\n\x10SampleConsortium\x12\xa5+\x12\xa2\x15\n\aOrg1MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins*\x06Admins\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\x1a@\n\x15ChannelCreationPolicy\x12'\x12\f\b\x03\x12\b\n\x06Admins\x1a\x17/Channel/Orderer/Admins*\x17/Channel/Orderer/Admins\"-\n\x06Admins\x12#\x12\b\b\x01\x12\x04\x12\x02\x12\x00\x1a\x17/Channel/Orderer/Admins*\x17/Channel/Orderer/Admins\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins*\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins" >metadata: -2017/10/12 08:31:51 proto: textWriter unindented too far -2017/10/12 08:31:51 proto: textWriter unindented too far -[038 10-12 08:31:51.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr, block=header:<6:39 0:"\x00" } 0:4 4:127 1084:/* unknown wire type 6 */ 1069:3177962149 435:108 232139888987:/* unexpected EOF */ } 1637:/* unexpected EOF */ 12:63 1:/* unknown wire type 6 */ 94581:/* unexpected EOF */ /* unexpected EOF */ >data:<1:"\ny\n[\b\x01\x10\x01\x1a\x06\b\x9e\xdd\xdd\xce\x05\"\vtestchainid*@1a1b979dfa8cadf6aaa24c1e0f359ff6cca14741ee34f49da20685f6e8ec0cf0\x12\x1a\x12\x18)\x0e־\\\x01\xd4U\x85\xbc73\xc9\xc7\x147\vC\x16\x02\xedM\f{\x12\x9dF\n\x9aF\x12\x97F\x12\x95,\n\vConsortiums\x12\x85,\x12\xba+\n\x10SampleConsortium\x12\xa5+\x12\xa2\x15\n\aOrg1MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins*\x06Admins\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\x1a@\n\x15ChannelCreationPolicy\x12'\x12\f\b\x03\x12\b\n\x06Admins\x1a\x17/Channel/Orderer/Admins*\x17/Channel/Orderer/Admins\"-\n\x06Admins\x12#\x12\b\b\x01\x12\x04\x12\x02\x12\x00\x1a\x17/Channel/Orderer/Admins*\x17/Channel/Orderer/Admins\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins*\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins" >metadata: -[039 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock -> DEBU Save new checkpoint info to the levelDB: latestFileChunkSuffixNum=[0], latestFileChunksize=[9163], isChainEmpty=[false], lastBlockNumber=[0] -[03a 10-12 08:31:51.71 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{0xef, 0x21, 0x3a, 0xa0, 0xb0, 0xd0, 0x65, 0x53, 0x53, 0xbf, 0x72, 0xbe, 0xd6, 0x45, 0x7e, 0xd3, 0xd4, 0xd, 0x36, 0xf1, 0xbf, 0x6b, 0x60, 0xad, 0xaf, 0x2c, 0x29, 0x5c, 0xe3, 0xd, 0x5a, 0xff} txOffsets= -txId=1a1b979dfa8cadf6aaa24c1e0f359ff6cca14741ee34f49da20685f6e8ec0cf0 locPointer=offset=38, bytesLength=9120 -] -[03b 10-12 08:31:51.71 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=[9163], isChainEmpty=[false], lastBlockNumber=[0] -[03c 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU ===NewRegistrar Begin -[03d 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU ===NewRegistrar End -[03e 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU (At least has the system channel here) existingChains=[testchainid] -[03f 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU processing chain testchainid -[040 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.GetOrCreate -> DEBU fileLedgerFactory will GetOrCreate testchainid -[041 10-12 08:31:51.71 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] -[042 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9163], Going to peek [8] bytes -[043 10-12 08:31:51.71 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=[9161], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[044 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9161] read from file [0] -[045 10-12 08:31:51.71 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] -[046 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9163], Going to peek [8] bytes -[047 10-12 08:31:51.71 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=[9161], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[048 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9161] read from file [0] -[049 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU getConfigTx=payload:"\ny\n[\010\001\020\001\032\006\010\236\335\335\316\005\"\013testchainid*@1a1b979dfa8cadf6aaa24c1e0f359ff6cca14741ee34f49da20685f6e8ec0cf0\022\032\022\030)\016\326\276\\\001\324U\205\27473\311\307\0247\013C\026\002\355M\014{\022\235F\n\232F\022\227F\022\225,\n\013Consortiums\022\205,\022\272+\n\020SampleConsortium\022\245+\022\242\025\n\007Org1MSP\022\226\025\032\364\023\n\003MSP\022\354\023\022\341\023\022\336\023\n\007Org1MSP\022\317\006-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\016\n\004SHA2\022\006SHA256J\327\006-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\032\006Admins\"0\n\007Writers\022%\022\033\010\001\022\027\022\010\022\006\010\001\022\002\010\000\032\013\022\t\n\007Org1MSP\032\006Admins\"1\n\006Admins\022'\022\035\010\001\022\031\022\010\022\006\010\001\022\002\010\000\032\r\022\013\n\007Org1MSP\020\001\032\006Admins\"0\n\007Readers\022%\022\033\010\001\022\027\022\010\022\006\010\001\022\002\010\000\032\013\022\t\n\007Org1MSP\032\006Admins*\006Admins\022\242\025\n\007Org2MSP\022\226\025\032\364\023\n\003MSP\022\354\023\022\341\023\022\336\023\n\007Org2MSP\022\317\006-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\016\n\004SHA2\022\006SHA256J\327\006-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\032\006Admins\"0\n\007Writers\022%\022\033\010\001\022\027\022\010\022\006\010\001\022\002\010\000\032\013\022\t\n\007Org2MSP\032\006Admins\"1\n\006Admins\022'\022\035\010\001\022\031\022\010\022\006\010\001\022\002\010\000\032\r\022\013\n\007Org2MSP\020\001\032\006Admins\"0\n\007Readers\022%\022\033\010\001\022\027\022\010\022\006\010\001\022\002\010\000\032\013\022\t\n\007Org2MSP\032\006Admins*\006Admins\032@\n\025ChannelCreationPolicy\022'\022\014\010\003\022\010\n\006Admins\032\027/Channel/Orderer/Admins*\027/Channel/Orderer/Admins\"-\n\006Admins\022#\022\010\010\001\022\004\022\002\022\000\032\027/Channel/Orderer/Admins*\027/Channel/Orderer/Admins\022\346\027\n\007Orderer\022\332\027\022\336\024\n\nOrdererOrg\022\317\024\032\244\023\n\003MSP\022\234\023\022\221\023\022\216\023\n\nOrdererMSP\022\262\006-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\375\005-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\016\n\004SHA2\022\006SHA256J\272\006-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\032\006Admins\"3\n\007Readers\022(\022\036\010\001\022\032\022\010\022\006\010\001\022\002\010\000\032\016\022\014\n\nOrdererMSP\032\006Admins\"3\n\007Writers\022(\022\036\010\001\022\032\022\010\022\006\010\001\022\002\010\000\032\016\022\014\n\nOrdererMSP\032\006Admins\"4\n\006Admins\022*\022 \010\001\022\034\022\010\022\006\010\001\022\002\010\000\032\020\022\016\n\nOrdererMSP\020\001\032\006Admins*\006Admins\032\036\n\014BatchTimeout\022\016\022\004\n\0022s\032\006Admins\032\037\n\023ChannelRestrictions\022\010\032\006Admins\032N\n\014KafkaBrokers\022>\0224\n\013kafka0:9092\n\013kafka1:9092\n\013kafka2:9092\n\013kafka3:9092\032\006Admins\032\"\n\rConsensusType\022\021\022\007\n\005kafka\032\006Admins\032\"\n\tBatchSize\022\025\022\013\010\n\020\200\200\2001\030\200\200 \032\006Admins\"*\n\017BlockValidation\022\027\022\r\010\003\022\t\n\007Writers\032\006Admins\"\"\n\007Readers\022\027\022\r\010\003\022\t\n\007Readers\032\006Admins\"\"\n\007Writers\022\027\022\r\010\003\022\t\n\007Writers\032\006Admins\"\"\n\006Admins\022\030\022\016\010\003\022\n\n\006Admins\020\002\032\006Admins*\006Admins\032I\n\020OrdererAddresses\0225\022\032\n\030orderer.example.com:7050\032\027/Channel/Orderer/Admins\032&\n\020HashingAlgorithm\022\022\022\010\n\006SHA256\032\006Admins\032-\n\031BlockDataHashingStructure\022\020\022\006\010\377\377\377\377\017\032\006Admins\"\"\n\006Admins\022\030\022\016\010\003\022\n\n\006Admins\020\002\032\006Admins\"\"\n\007Readers\022\027\022\r\010\003\022\t\n\007Readers\032\006Admins\"\"\n\007Writers\022\027\022\r\010\003\022\t\n\007Writers\032\006Admins*\006Admins" -[04a 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources -> DEBU configEnvelope=config: > 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: > mod_policy:"/Channel/Orderer/Admins" > > policies: mod_policy:"/Channel/Orderer/Admins" > > mod_policy:"/Channel/Orderer/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: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > -[04b 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[04c 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[04d 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[04e 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[04f 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[050 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[051 10-12 08:31:51.71 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 -[052 10-12 08:31:51.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -[053 10-12 08:31:51.71 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 -[054 10-12 08:31:51.72 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 -[055 10-12 08:31:51.72 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 -[056 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[057 10-12 08:31:51.72 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 -[058 10-12 08:31:51.72 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 -[059 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[05a 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[05b 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[05c 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[05d 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[05e 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[05f 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[060 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[061 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[062 10-12 08:31:51.72 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 -[063 10-12 08:31:51.72 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 -[064 10-12 08:31:51.72 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 -[065 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[066 10-12 08:31:51.72 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 -[067 10-12 08:31:51.72 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 -[068 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[069 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[06a 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[06b 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[06c 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[06d 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[06e 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[06f 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[070 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[071 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[072 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[073 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[074 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[075 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[076 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[077 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[078 10-12 08:31:51.72 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 -[079 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[07a 10-12 08:31:51.72 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 -[07b 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[07c 10-12 08:31:51.72 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 -[07d 10-12 08:31:51.72 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 -[07e 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[07f 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[080 10-12 08:31:51.72 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[081 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[082 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[083 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[084 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[085 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[086 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[087 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[088 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[089 10-12 08:31:51.73 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 -[08a 10-12 08:31:51.73 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 -[08b 10-12 08:31:51.73 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 -[08c 10-12 08:31:51.73 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 -[08d 10-12 08:31:51.73 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 -[08e 10-12 08:31:51.73 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 -[08f 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums -[090 10-12 08:31:51.73 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 -[091 10-12 08:31:51.73 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 -[092 10-12 08:31:51.73 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 -[093 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[094 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[095 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[096 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[097 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[098 10-12 08:31:51.73 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 -[099 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[09a 10-12 08:31:51.73 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 -[09b 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[09c 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[09d 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[09e 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[09f 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[0a0 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[0a1 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[0a2 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[0a3 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[0a4 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[0a5 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[0a6 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[0a7 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[0a8 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[0a9 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[0aa 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[0ab 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[0ac 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums -[0ad 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium -[0ae 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org2MSP -[0af 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -[0b0 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -[0b1 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -[0b2 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -[0b3 10-12 08:31:51.73 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Consortiums/SampleConsortium/Org1MSP -[0b4 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -[0b5 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -[0b6 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -[0b7 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -[0b8 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -[0b9 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -[0ba 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[0bb 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[0bc 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[0bd 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[0be 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[0bf 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[0c0 10-12 08:31:51.74 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' -[0c1 10-12 08:31:51.74 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' -[0c2 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[0c3 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[0c4 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[0c5 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[0c6 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[0c7 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[0c8 10-12 08:31:51.74 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 [] -[0c9 10-12 08:31:51.74 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 -[0ca 10-12 08:31:51.74 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' -[0cb 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.GetOrCreate -> DEBU fileLedgerFactory will GetOrCreate testchainid -[0cc 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> DEBU Starting system chain testchainid -[0cd 10-12 08:31:51.74 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] -[0ce 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9163], Going to peek [8] bytes -[0cf 10-12 08:31:51.74 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=[9161], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[0d0 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9161] read from file [0] -[0d1 10-12 08:31:51.74 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) -[0d2 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.HandleChain.newChain -> INFO [channel: testchainid] Starting chain with last persisted offset -3 and last recorded block 0 -[0d3 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources -[0d4 10-12 08:31:51.74 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.CreateSystemChannelFilters -> DEBU OrdererConfig=&{protos:0xc420267e00 orgs:map[OrdererOrg:0xc42018e300] batchTimeout:2000000000} -[0d5 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid -[0d6 10-12 08:31:51.75 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] -[0d7 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9163], Going to peek [8] bytes -[0d8 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9161], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[0d9 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9161] read from file [0] -[0da 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash ef213aa0b0d0655353bf72bed6457ed3d40d36f1bf6b60adaf2c295ce30d5aff and orderer type kafka -[0db 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: - Version: 1.1.0 - Go version: go1.9.1 - OS/Arch: linux/amd64 - Experimental features: -[0dd 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeGrpcServer.initializeSecureServerConfig -> INFO Starting orderer with TLS enabled -[0dc 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> DEBU startThread() begin -[0de 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel -> INFO [channel: testchainid] Setting up the producer for this channel... -[0df 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel.retry.try -> DEBU [channel: testchainid] Connecting to the Kafka cluster -[0e0 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient -> DEBU Initializing new client -[0e1 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[0e2 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.any.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[0e3 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for all topics from broker kafka3:9092 -[0e4 10-12 08:31:51.75 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka3:9092 (unregistered) -[0e5 10-12 08:31:51.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests -[0e6 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #2 at kafka2:9092 -[0e7 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #1 at kafka1:9092 -[0e8 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #3 at kafka3:9092 -[0e9 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #0 at kafka0:9092 -[0ea 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient -> DEBU Successfully initialized new client -[0eb 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel.retry.try -> DEBU [channel: testchainid] Error is nil, breaking the retry loop -[0ec 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] Producer set up successfully -[0ed 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage -> INFO [channel: testchainid] About to post the CONNECT message... -[0ee 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: testchainid] Attempting to post the CONNECT message... -[0ef 10-12 08:31:51.78 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [testchainid] from broker kafka3:9092 -[0f0 10-12 08:31:51.95 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata found some partitions to be leaderless -[0f1 10-12 08:31:51.95 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1 -> DEBU client/metadata retrying after 250ms... (3 attempts remaining) -[0f2 10-12 08:31:52.20 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [testchainid] from broker kafka3:9092 -[0f3 10-12 08:31:52.51 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata -> DEBU client/metadata found some partitions to be leaderless -[0f4 10-12 08:31:52.51 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata.func1 -> DEBU client/metadata retrying after 250ms... (2 attempts remaining) -[0f5 10-12 08:31:52.76 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata.func1.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [testchainid] from broker kafka3:9092 -[0f6 10-12 08:31:53.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[0f7 10-12 08:31:53.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:39960 -[0f8 10-12 08:31:53.26 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39960 -[0f9 10-12 08:31:53.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[0fa 10-12 08:31:53.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.11:39962 -[0fb 10-12 08:31:53.29 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.11:39962 -[0fc 10-12 08:31:53.29 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 -[0fd 10-12 08:31:53.30 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 -[0fe 10-12 08:31:53.30 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 -[0ff 10-12 08:31:53.30 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 -[100 10-12 08:31:53.30 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 -[101 10-12 08:31:53.30 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 -[102 10-12 08:31:53.30 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 -[103 10-12 08:31:53.30 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 -[104 10-12 08:31:53.30 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 -[105 10-12 08:31:53.31 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 -[106 10-12 08:31:53.31 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 -[107 10-12 08:31:53.31 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 -[108 10-12 08:31:53.31 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 -[109 10-12 08:31:53.31 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 -[10a 10-12 08:31:53.31 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 -[10b 10-12 08:31:53.31 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 -[10c 10-12 08:31:53.31 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 -[10d 10-12 08:31:53.31 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 -[10e 10-12 08:31:53.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[10f 10-12 08:31:53.31 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 -[110 10-12 08:31:53.31 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 -[112 10-12 08:31:53.31 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata.func1.tryRefreshMetadata -> DEBU client/metadata found some partitions to be leaderless -[113 10-12 08:31:53.31 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata.func1.tryRefreshMetadata.func1 -> DEBU client/metadata retrying after 250ms... (1 attempts remaining) -[111 10-12 08:31:53.31 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[114 10-12 08:31:53.32 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[115 10-12 08:31:53.32 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[116 10-12 08:31:53.32 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[117 10-12 08:31:53.32 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[118 10-12 08:31:53.32 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[119 10-12 08:31:53.32 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[11a 10-12 08:31:53.33 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[11b 10-12 08:31:53.33 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[11c 10-12 08:31:53.33 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 -[11d 10-12 08:31:53.33 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 -[11e 10-12 08:31:53.33 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 -[11f 10-12 08:31:53.34 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 -[120 10-12 08:31:53.34 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 -[121 10-12 08:31:53.34 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 -[122 10-12 08:31:53.34 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 -[123 10-12 08:31:53.34 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 -[124 10-12 08:31:53.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[125 10-12 08:31:53.34 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 -[126 10-12 08:31:53.34 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 -[127 10-12 08:31:53.34 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[128 10-12 08:31:53.34 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[129 10-12 08:31:53.34 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[12a 10-12 08:31:53.34 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[12b 10-12 08:31:53.34 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[12c 10-12 08:31:53.34 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[12d 10-12 08:31:53.34 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[12e 10-12 08:31:53.34 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[12f 10-12 08:31:53.34 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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[130 10-12 08:31:53.34 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 -[131 10-12 08:31:53.34 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 -[132 10-12 08:31:53.34 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 -[133 10-12 08:31:53.34 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 -[134 10-12 08:31:53.35 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 -[135 10-12 08:31:53.35 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 -[136 10-12 08:31:53.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[137 10-12 08:31:53.35 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 -[138 10-12 08:31:53.35 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 -[139 10-12 08:31:53.35 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[13a 10-12 08:31:53.35 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[13b 10-12 08:31:53.35 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[13c 10-12 08:31:53.35 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[13d 10-12 08:31:53.35 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[13e 10-12 08:31:53.35 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[13f 10-12 08:31:53.35 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[140 10-12 08:31:53.35 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[141 10-12 08:31:53.35 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[142 10-12 08:31:53.37 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) -[143 10-12 08:31:53.37 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 -[144 10-12 08:31:53.37 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 -[145 10-12 08:31:53.37 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 -[146 10-12 08:31:53.37 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 -[147 10-12 08:31:53.37 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 -[148 10-12 08:31:53.37 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 -[149 10-12 08:31:53.37 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 -[14a 10-12 08:31:53.37 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 -[14b 10-12 08:31:53.37 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 -[14c 10-12 08:31:53.37 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 -[14d 10-12 08:31:53.37 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 -[14e 10-12 08:31:53.37 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 -[14f 10-12 08:31:53.37 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 -[150 10-12 08:31:53.37 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 -[151 10-12 08:31:53.37 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 -[152 10-12 08:31:53.37 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 -[153 10-12 08:31:53.37 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 -[154 10-12 08:31:53.37 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 -[155 10-12 08:31:53.37 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 -[156 10-12 08:31:53.37 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 -[157 10-12 08:31:53.37 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 -[158 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[159 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[15a 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[15b 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[15c 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[15d 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[15e 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[15f 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[160 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[161 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[162 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[163 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[164 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[165 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[166 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[167 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[168 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[169 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[16a 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[16b 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[16c 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[16d 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[16e 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[16f 10-12 08:31:53.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[170 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[171 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[172 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[173 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[174 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[175 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[176 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[177 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[178 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[179 10-12 08:31:53.38 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[17a 10-12 08:31:53.39 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[17b 10-12 08:31:53.39 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: [Groups] /Channel -[17c 10-12 08:31:53.39 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: [Groups] /Channel/Application -[17d 10-12 08:31:53.40 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: [Groups] /Channel/Application/Org1MSP -[17e 10-12 08:31:53.40 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: [Groups] /Channel/Application/Org2MSP -[17f 10-12 08:31:53.40 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: [Values] /Channel/Consortium -[180 10-12 08:31:53.40 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: [Groups] /Channel -[181 10-12 08:31:53.40 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: [Groups] /Channel/Application -[182 10-12 08:31:53.40 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: [Groups] /Channel/Application/Org1MSP -[183 10-12 08:31:53.40 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: [Groups] /Channel/Application/Org2MSP -[184 10-12 08:31:53.40 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 -[185 10-12 08:31:53.40 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 -[186 10-12 08:31:53.40 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 -[187 10-12 08:31:53.40 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: [Values] /Channel/Consortium -[188 10-12 08:31:53.40 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 -[189 10-12 08:31:53.40 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 -[18a 10-12 08:31:53.40 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 -[18b 10-12 08:31:53.40 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: [Groups] /Channel/Application -[18c 10-12 08:31:53.40 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 -[18d 10-12 08:31:53.40 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 [] -[18e 10-12 08:31:53.41 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 -[18f 10-12 08:31:53.41 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 -[190 10-12 08:31:53.41 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] -[191 10-12 08:31:53.41 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 -[192 10-12 08:31:53.41 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 -[193 10-12 08:31:53.41 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 [] -[194 10-12 08:31:53.41 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 -[195 10-12 08:31:53.41 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 -[196 10-12 08:31:53.41 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 == -[197 10-12 08:31:53.41 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 -[198 10-12 08:31:53.41 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 == -[199 10-12 08:31:53.41 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 -[19a 10-12 08:31:53.41 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[19b 10-12 08:31:53.41 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 0xc42000e6a8 gate 1507797113412557241 evaluation starts -[19c 10-12 08:31:53.41 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 0xc42000e6a8 signed by 0 principal evaluation starts (used [false]) -[19d 10-12 08:31:53.41 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 0xc42000e6a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[19e 10-12 08:31:53.42 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 -[19f 10-12 08:31:53.42 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 0xc42000e6a8 principal matched by identity 0 -[1a0 10-12 08:31:53.42 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 1f 06 31 e3 f3 4d b9 c0 66 98 47 fb 25 31 3f 64 |..1..M..f.G.%1?d| -00000010 4b 0f 28 94 bc 1e 35 d1 a2 38 78 93 b7 39 43 c8 |K.(...5..8x..9C.| -[1a1 10-12 08:31:53.42 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 44 02 20 16 64 82 47 05 5c bc 98 a8 6c a9 64 |0D. .d.G.\...l.d| -00000010 45 3b e7 f9 9c 7d 9b 69 00 94 f6 c6 0b df ed 2e |E;...}.i........| -00000020 67 71 b5 a4 02 20 50 c3 05 6a 63 a4 1a c2 06 2f |gq... P..jc..../| -00000030 50 85 b7 b1 aa df 66 b3 82 db d2 01 3d 9d 8a 70 |P.....f.....=..p| -00000040 e7 9f aa b2 13 1c |......| -[1a2 10-12 08:31:53.42 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 0xc42000e6a8 principal evaluation succeeds for identity 0 -[1a3 10-12 08:31:53.42 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 0xc42000e6a8 gate 1507797113412557241 evaluation succeeds -[1a4 10-12 08:31:53.42 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 -[1a5 10-12 08:31:53.42 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 -[1a6 10-12 08:31:53.42 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 -[1a7 10-12 08:31:53.42 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 -[1a8 10-12 08:31:53.42 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" -[1a9 10-12 08:31:53.42 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" -[1aa 10-12 08:31:53.42 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" -[1ab 10-12 08:31:53.42 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" -[1ac 10-12 08:31:53.42 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" -[1ad 10-12 08:31:53.42 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" -[1ae 10-12 08:31:53.42 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" -[1af 10-12 08:31:53.42 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" -[1b0 10-12 08:31:53.42 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" -[1b1 10-12 08:31:53.42 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" -[1b2 10-12 08:31:53.43 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" -[1b3 10-12 08:31:53.43 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" -[1b4 10-12 08:31:53.43 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" -[1b5 10-12 08:31:53.43 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" -[1b6 10-12 08:31:53.43 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" -[1b7 10-12 08:31:53.43 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" -[1b8 10-12 08:31:53.43 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" -[1b9 10-12 08:31:53.43 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" -[1ba 10-12 08:31:53.43 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" -[1bb 10-12 08:31:53.43 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 -[1bc 10-12 08:31:53.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[1bd 10-12 08:31:53.43 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 -[1be 10-12 08:31:53.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[1bf 10-12 08:31:53.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608F9D0FCCE0522...6B6E84AB9C2E1E529B0D2244A6F02518 -[1c0 10-12 08:31:53.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: DED895DC4576D33817B85D80EAC16C6EB9D95FB34FFD475BEF3789B7FAF0E2FC -[1c1 10-12 08:31:53.43 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 -[1c2 10-12 08:31:53.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[1c3 10-12 08:31:53.44 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 -[1c4 10-12 08:31:53.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[1c5 10-12 08:31:53.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608F9D0FCCE0522...9948089B873DA99AFDB33B3654CBE0DB -[1c6 10-12 08:31:53.44 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 8C70C6E536C63CFD47675C2BC1DC418DCCC6375D48CCBDA024BE57976296A458 -[1c7 10-12 08:31:53.44 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 == -[1c8 10-12 08:31:53.44 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 -[1c9 10-12 08:31:53.44 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 == -[1ca 10-12 08:31:53.44 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 -[1cb 10-12 08:31:53.44 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 == -[1cc 10-12 08:31:53.44 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 -[1cd 10-12 08:31:53.44 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----- -MIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC -Wo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr -KJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC -xgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP ------END CERTIFICATE----- -[1ce 10-12 08:31:53.44 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 0xc42000e7a0 gate 1507797113445732149 evaluation starts -[1cf 10-12 08:31:53.44 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 0xc42000e7a0 signed by 0 principal evaluation starts (used [false]) -[1d0 10-12 08:31:53.44 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 0xc42000e7a0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f6741774942416749524149523249436e69564f71416d6b2f76346a726f7a466377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a30444151634451674145465732366339464b4c38556a57303259706c487252527550575566436e7a44484158456a663768494a78635730384d430a576f357254537a3746685937776965684a4a39336376642b49646b77594e706347776f4265714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167325a714c67794e4a314f39632f7a56373162416753664737396a47720a4b4a38667273634332614d3743746b77436759494b6f5a497a6a3045417749445277417752414968414e693445306d326a416c77646b7376587a3047453157430a78674c384e6f306f35576d764f534c73332f6a4441683872496b4678716552484e69756c6d567a6c49394f4467745a37627143584c313377457779374f4a42500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1d1 10-12 08:31:53.44 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 -[1d2 10-12 08:31:53.44 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 -[1d3 10-12 08:31:53.44 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 0xc42000e7a0 principal matched by identity 0 -[1d4 10-12 08:31:53.44 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 8c 70 c6 e5 36 c6 3c fd 47 67 5c 2b c1 dc 41 8d |.p..6.<.Gg\+..A.| -00000010 cc c6 37 5d 48 cc bd a0 24 be 57 97 62 96 a4 58 |..7]H...$.W.b..X| -[1d5 10-12 08:31:53.44 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 91 70 b9 02 f0 6a 96 c6 07 3c 7c |0E.!..p...j...<|| -00000010 9c 9f 2f 0e fe 4c 65 c6 09 96 18 0c b1 9b ef 92 |../..Le.........| -00000020 bd 9f 73 ab 16 02 20 7a 9d 17 3e a6 89 e2 f1 4e |..s... z..>....N| -00000030 ef ad 56 90 32 b5 9a 36 bc 52 d1 66 1e e8 84 ac |..V.2..6.R.f....| -00000040 7b f5 31 5e 1a b4 7b |{.1^..{| -[1d6 10-12 08:31:53.44 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 0xc42000e7a0 principal evaluation succeeds for identity 0 -[1d7 10-12 08:31:53.44 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 0xc42000e7a0 gate 1507797113445732149 evaluation succeeds -[1d8 10-12 08:31:53.44 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 -[1d9 10-12 08:31:53.44 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 -[1da 10-12 08:31:53.45 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 -[1db 10-12 08:31:53.45 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 -[1dc 10-12 08:31:53.45 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 -[1dd 10-12 08:31:53.45 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 -[1de 10-12 08:31:53.45 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 -[1df 10-12 08:31:53.45 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 -[1e0 10-12 08:31:53.45 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 -[1e1 10-12 08:31:53.45 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 -[1e2 10-12 08:31:53.45 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 -[1e3 10-12 08:31:53.45 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 -[1e4 10-12 08:31:53.45 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 -[1e5 10-12 08:31:53.45 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 -[1e6 10-12 08:31:53.45 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 -[1e7 10-12 08:31:53.45 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 -[1e8 10-12 08:31:53.45 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 -[1e9 10-12 08:31:53.45 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 -[1ea 10-12 08:31:53.45 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 -[1eb 10-12 08:31:53.45 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 -[1ec 10-12 08:31:53.45 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 -[1ed 10-12 08:31:53.45 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 -[1ee 10-12 08:31:53.45 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1ef 10-12 08:31:53.45 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 -[1f0 10-12 08:31:53.45 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 -[1f1 10-12 08:31:53.45 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[1f2 10-12 08:31:53.45 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[1f3 10-12 08:31:53.45 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[1f4 10-12 08:31:53.45 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[1f5 10-12 08:31:53.45 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[1f6 10-12 08:31:53.45 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[1f7 10-12 08:31:53.45 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[1f8 10-12 08:31:53.46 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[1f9 10-12 08:31:53.46 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[1fa 10-12 08:31:53.46 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 -[1fb 10-12 08:31:53.46 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 -[1fc 10-12 08:31:53.46 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 -[1fd 10-12 08:31:53.46 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 -[1fe 10-12 08:31:53.46 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 -[1ff 10-12 08:31:53.46 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 -[200 10-12 08:31:53.46 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 -[201 10-12 08:31:53.46 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 -[202 10-12 08:31:53.46 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[203 10-12 08:31:53.46 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 -[204 10-12 08:31:53.46 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 -[205 10-12 08:31:53.46 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[206 10-12 08:31:53.47 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[207 10-12 08:31:53.47 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[208 10-12 08:31:53.47 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[209 10-12 08:31:53.47 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[20a 10-12 08:31:53.47 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[20b 10-12 08:31:53.47 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[20c 10-12 08:31:53.48 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[20d 10-12 08:31:53.49 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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[20e 10-12 08:31:53.49 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 -[20f 10-12 08:31:53.49 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 -[210 10-12 08:31:53.49 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 -[211 10-12 08:31:53.49 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 -[212 10-12 08:31:53.49 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 -[213 10-12 08:31:53.49 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 -[214 10-12 08:31:53.49 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[215 10-12 08:31:53.49 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 -[216 10-12 08:31:53.49 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 -[217 10-12 08:31:53.49 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[218 10-12 08:31:53.50 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[219 10-12 08:31:53.50 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[21a 10-12 08:31:53.50 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[21b 10-12 08:31:53.50 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[21c 10-12 08:31:53.50 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[21d 10-12 08:31:53.50 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[21e 10-12 08:31:53.50 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[21f 10-12 08:31:53.51 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[220 10-12 08:31:53.51 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) -[221 10-12 08:31:53.51 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 -[222 10-12 08:31:53.51 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 -[223 10-12 08:31:53.51 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 -[224 10-12 08:31:53.51 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 -[225 10-12 08:31:53.51 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 -[226 10-12 08:31:53.51 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 -[227 10-12 08:31:53.51 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 -[228 10-12 08:31:53.51 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 -[229 10-12 08:31:53.51 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 -[22a 10-12 08:31:53.51 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 -[22b 10-12 08:31:53.51 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 -[22c 10-12 08:31:53.51 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 -[22d 10-12 08:31:53.51 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 -[22e 10-12 08:31:53.51 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 -[22f 10-12 08:31:53.51 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 -[230 10-12 08:31:53.51 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 -[231 10-12 08:31:53.51 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 -[232 10-12 08:31:53.51 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 -[233 10-12 08:31:53.51 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 -[234 10-12 08:31:53.51 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 -[235 10-12 08:31:53.51 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 -[236 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[237 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[238 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[239 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[23a 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[23b 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[23c 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[23d 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[23e 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[23f 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[240 10-12 08:31:53.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[241 10-12 08:31:53.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[242 10-12 08:31:53.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[243 10-12 08:31:53.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[244 10-12 08:31:53.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[245 10-12 08:31:53.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[246 10-12 08:31:53.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[247 10-12 08:31:53.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[248 10-12 08:31:53.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[249 10-12 08:31:53.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[24a 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[24b 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[24c 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[24d 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[24e 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[24f 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[250 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[251 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[252 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[253 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[254 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[255 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[256 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[257 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[258 10-12 08:31:53.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[259 10-12 08:31:53.54 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: [Groups] /Channel -[25a 10-12 08:31:53.54 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: [Groups] /Channel/Application -[25b 10-12 08:31:53.54 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: [Groups] /Channel/Application/Org1MSP -[25c 10-12 08:31:53.54 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: [Groups] /Channel/Application/Org2MSP -[25d 10-12 08:31:53.54 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: [Values] /Channel/Consortium -[25e 10-12 08:31:53.54 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: [Groups] /Channel -[25f 10-12 08:31:53.54 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: [Groups] /Channel/Application -[260 10-12 08:31:53.54 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: [Groups] /Channel/Application/Org1MSP -[261 10-12 08:31:53.54 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: [Groups] /Channel/Application/Org2MSP -[262 10-12 08:31:53.54 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 -[263 10-12 08:31:53.54 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 -[264 10-12 08:31:53.54 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 -[265 10-12 08:31:53.54 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: [Values] /Channel/Consortium -[266 10-12 08:31:53.54 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: [Groups] /Channel/Application -[267 10-12 08:31:53.54 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 -[268 10-12 08:31:53.54 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 [] -[269 10-12 08:31:53.54 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 -[26a 10-12 08:31:53.55 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 -[26b 10-12 08:31:53.55 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] -[26c 10-12 08:31:53.55 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 -[26d 10-12 08:31:53.55 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 -[26e 10-12 08:31:53.55 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 [] -[26f 10-12 08:31:53.55 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 -[270 10-12 08:31:53.56 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 -[271 10-12 08:31:53.56 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 == -[272 10-12 08:31:53.56 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 -[273 10-12 08:31:53.56 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 == -[274 10-12 08:31:53.56 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 -[275 10-12 08:31:53.56 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[276 10-12 08:31:53.57 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata.func1.tryRefreshMetadata.func1.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [testchainid] from broker kafka3:9092 -[277 10-12 08:31:53.57 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 0xc420168410 gate 1507797113573855900 evaluation starts -[278 10-12 08:31:53.57 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 0xc420168410 signed by 0 principal evaluation starts (used [false]) -[279 10-12 08:31:53.57 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 0xc420168410 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[27a 10-12 08:31:53.57 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 -[27b 10-12 08:31:53.57 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 0xc420168410 principal matched by identity 0 -[27c 10-12 08:31:53.57 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 1f 06 31 e3 f3 4d b9 c0 66 98 47 fb 25 31 3f 64 |..1..M..f.G.%1?d| -00000010 4b 0f 28 94 bc 1e 35 d1 a2 38 78 93 b7 39 43 c8 |K.(...5..8x..9C.| -[27d 10-12 08:31:53.57 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 44 02 20 16 64 82 47 05 5c bc 98 a8 6c a9 64 |0D. .d.G.\...l.d| -00000010 45 3b e7 f9 9c 7d 9b 69 00 94 f6 c6 0b df ed 2e |E;...}.i........| -00000020 67 71 b5 a4 02 20 50 c3 05 6a 63 a4 1a c2 06 2f |gq... P..jc..../| -00000030 50 85 b7 b1 aa df 66 b3 82 db d2 01 3d 9d 8a 70 |P.....f.....=..p| -00000040 e7 9f aa b2 13 1c |......| -[27e 10-12 08:31:53.57 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 0xc420168410 principal evaluation succeeds for identity 0 -[27f 10-12 08:31:53.57 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 0xc420168410 gate 1507797113573855900 evaluation succeeds -[280 10-12 08:31:53.57 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 -[281 10-12 08:31:53.57 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 -[282 10-12 08:31:53.58 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 -[283 10-12 08:31:53.58 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 -[284 10-12 08:31:53.58 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 -[285 10-12 08:31:53.59 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 -[286 10-12 08:31:53.59 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 -[287 10-12 08:31:53.59 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" -[288 10-12 08:31:53.60 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" -[289 10-12 08:31:53.60 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" -[28a 10-12 08:31:53.60 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" -[28b 10-12 08:31:53.60 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" -[28c 10-12 08:31:53.60 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" -[28d 10-12 08:31:53.60 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" -[28e 10-12 08:31:53.60 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" -[28f 10-12 08:31:53.60 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" -[290 10-12 08:31:53.61 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" -[291 10-12 08:31:53.61 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" -[292 10-12 08:31:53.61 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" -[293 10-12 08:31:53.61 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" -[294 10-12 08:31:53.61 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" -[295 10-12 08:31:53.61 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" -[296 10-12 08:31:53.61 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" -[297 10-12 08:31:53.61 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" -[298 10-12 08:31:53.61 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" -[299 10-12 08:31:53.62 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" -[29a 10-12 08:31:53.62 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 -[29b 10-12 08:31:53.62 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 -[29c 10-12 08:31:53.62 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 -[29d 10-12 08:31:53.62 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 -[29e 10-12 08:31:53.62 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 -[29f 10-12 08:31:53.63 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 -[2a0 10-12 08:31:53.64 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 -[2a1 10-12 08:31:53.64 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 -[2a2 10-12 08:31:53.64 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 -[2a3 10-12 08:31:53.65 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 -[2a4 10-12 08:31:53.65 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 -[2a5 10-12 08:31:53.65 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 -[2a6 10-12 08:31:53.66 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 -[2a7 10-12 08:31:53.66 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 -[2a8 10-12 08:31:53.66 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 -[2a9 10-12 08:31:53.66 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 -[2aa 10-12 08:31:53.66 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2ab 10-12 08:31:53.66 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 -[2ac 10-12 08:31:53.66 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 -[2ad 10-12 08:31:53.67 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[2ae 10-12 08:31:53.67 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[2af 10-12 08:31:53.67 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[2b0 10-12 08:31:53.67 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[2b1 10-12 08:31:53.67 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[2b2 10-12 08:31:53.67 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[2b3 10-12 08:31:53.67 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[2b4 10-12 08:31:53.68 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[2b5 10-12 08:31:53.68 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[2b6 10-12 08:31:53.68 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 -[2b7 10-12 08:31:53.68 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 -[2b8 10-12 08:31:53.68 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 -[2b9 10-12 08:31:53.68 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 -[2ba 10-12 08:31:53.68 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 -[2bb 10-12 08:31:53.68 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 -[2bc 10-12 08:31:53.68 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 -[2bd 10-12 08:31:53.68 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 -[2be 10-12 08:31:53.68 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2bf 10-12 08:31:53.68 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 -[2c0 10-12 08:31:53.68 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 -[2c1 10-12 08:31:53.70 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[2c2 10-12 08:31:53.71 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[2c3 10-12 08:31:53.71 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[2c4 10-12 08:31:53.71 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[2c5 10-12 08:31:53.71 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[2c6 10-12 08:31:53.71 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[2c7 10-12 08:31:53.71 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[2c8 10-12 08:31:53.72 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[2c9 10-12 08:31:53.72 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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[2ca 10-12 08:31:53.72 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 -[2cb 10-12 08:31:53.72 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 -[2cc 10-12 08:31:53.72 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 -[2cd 10-12 08:31:53.73 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 -[2ce 10-12 08:31:53.73 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 -[2cf 10-12 08:31:53.73 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 -[2d0 10-12 08:31:53.73 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2d1 10-12 08:31:53.73 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 -[2d2 10-12 08:31:53.73 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 -[2d3 10-12 08:31:53.73 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[2d4 10-12 08:31:53.73 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[2d5 10-12 08:31:53.73 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[2d6 10-12 08:31:53.73 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[2d7 10-12 08:31:53.73 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[2d8 10-12 08:31:53.73 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[2d9 10-12 08:31:53.73 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[2da 10-12 08:31:53.73 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[2db 10-12 08:31:53.73 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[2dc 10-12 08:31:53.73 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) -[2dd 10-12 08:31:53.73 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 -[2de 10-12 08:31:53.73 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 -[2df 10-12 08:31:53.73 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 -[2e0 10-12 08:31:53.74 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 -[2e1 10-12 08:31:53.74 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 -[2e2 10-12 08:31:53.74 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 -[2e3 10-12 08:31:53.74 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 -[2e4 10-12 08:31:53.74 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 -[2e5 10-12 08:31:53.74 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 -[2e6 10-12 08:31:53.74 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 -[2e7 10-12 08:31:53.74 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 -[2e8 10-12 08:31:53.74 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 -[2e9 10-12 08:31:53.74 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 -[2ea 10-12 08:31:53.74 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 -[2eb 10-12 08:31:53.74 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 -[2ec 10-12 08:31:53.74 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 -[2ed 10-12 08:31:53.74 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 -[2ee 10-12 08:31:53.74 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 -[2ef 10-12 08:31:53.74 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 -[2f0 10-12 08:31:53.74 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 -[2f1 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[2f2 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[2f3 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[2f4 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[2f5 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[2f6 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[2f7 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[2f8 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[2f9 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[2fa 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[2fb 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[2fc 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[2fd 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[2fe 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[2ff 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[300 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[301 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[302 10-12 08:31:53.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[303 10-12 08:31:53.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[304 10-12 08:31:53.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[305 10-12 08:31:53.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[306 10-12 08:31:53.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[307 10-12 08:31:53.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[308 10-12 08:31:53.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[309 10-12 08:31:53.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[30a 10-12 08:31:53.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[30b 10-12 08:31:53.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[30c 10-12 08:31:53.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[30d 10-12 08:31:53.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[30e 10-12 08:31:53.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[30f 10-12 08:31:53.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[310 10-12 08:31:53.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[311 10-12 08:31:53.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[312 10-12 08:31:53.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[313 10-12 08:31:53.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[314 10-12 08:31:53.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[315 10-12 08:31:53.78 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[316 10-12 08:31:53.79 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Configure.Configure.enqueue -> DEBU [channel: testchainid] Enqueueing envelope... -[317 10-12 08:31:53.79 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Configure.Configure.enqueue -> WARN [channel: testchainid] Will not enqueue, consenter for this channel hasn't started yet -[318 10-12 08:31:53.79 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN [channel: businesschannel] Rejecting broadcast of config message from 172.18.0.11:39962 with SERVICE_UNAVAILABLE: rejected by Configure: cannot enqueue -[319 10-12 08:31:53.80 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:39960: rpc error: code = Canceled desc = context canceled -[31a 10-12 08:31:53.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[31b 10-12 08:31:53.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[31c 10-12 08:31:53.84 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata.func1.tryRefreshMetadata.func1.tryRefreshMetadata -> DEBU client/metadata found some partitions to be leaderless -[31d 10-12 08:31:53.84 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: testchainid] Retrying every 1s for a total of 30s -[31e 10-12 08:31:54.84 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: testchainid] Attempting to post the CONNECT message... -[31f 10-12 08:31:54.84 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [testchainid] from broker kafka3:9092 -[320 10-12 08:31:54.85 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.Leader.cachedLeader.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[321 10-12 08:31:54.85 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/1 starting up -[322 10-12 08:31:54.85 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/1 state change to [open] on testchainid/0 -[323 10-12 08:31:54.86 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka1:9092 (registered as #1) -[324 10-12 08:31:55.02 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: testchainid] Error is nil, breaking the retry loop -[325 10-12 08:31:55.02 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] CONNECT message posted successfully -[326 10-12 08:31:55.02 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel -> INFO [channel: testchainid] Setting up the parent consumer for this channel... -[327 10-12 08:31:55.02 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel.retry.try -> DEBU [channel: testchainid] Connecting to the Kafka cluster -[328 10-12 08:31:55.02 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient -> DEBU Initializing new client -[329 10-12 08:31:55.02 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[32a 10-12 08:31:55.02 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.any.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[32b 10-12 08:31:55.02 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for all topics from broker kafka0:9092 -[32c 10-12 08:31:55.02 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka0:9092 (unregistered) -[32d 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #2 at kafka2:9092 -[32e 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #1 at kafka1:9092 -[32f 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #3 at kafka3:9092 -[330 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #0 at kafka0:9092 -[331 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient -> DEBU Successfully initialized new client -[332 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel.retry.try -> DEBU [channel: testchainid] Error is nil, breaking the retry loop -[333 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] Parent consumer set up successfully -[334 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> DEBU [channel: testchainid] chain.lastOffsetPersisted=-3 -[335 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel -> INFO [channel: testchainid] Setting up the channel consumer for this channel (start offset: -2)... -[336 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel.retry.try -> DEBU [channel: testchainid] Connecting to the Kafka cluster -[337 10-12 08:31:55.06 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupChannelConsumerForChannel.retry.try.func1.ConsumePartition.chooseStartingOffset.GetOffset.getOffset.Leader.cachedLeader.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[338 10-12 08:31:55.07 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka1:9092 (registered as #1) -[339 10-12 08:31:55.09 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] subscriptionConsumer)-fm.subscriptionConsumer.updateSubscriptions -> DEBU consumer/broker/1 added subscription to testchainid/0 -[33a 10-12 08:31:55.09 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel.retry.try -> DEBU [channel: testchainid] Error is nil, breaking the retry loop -[33b 10-12 08:31:55.09 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] Channel consumer set up successfully -[33c 10-12 08:31:55.09 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: testchainid] Start phase completed successfully -[33d 10-12 08:31:55.10 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: testchainid] Successfully unmarshalled consumed message, offset is 0. Inspecting type... -[33e 10-12 08:31:55.10 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processConnect -> DEBU [channel: testchainid] It's a connect message - ignoring -[33f 10-12 08:31:56.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[340 10-12 08:31:56.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:39972 -[341 10-12 08:31:56.93 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39972 -[342 10-12 08:31:56.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[343 10-12 08:31:56.94 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.11:39974 -[344 10-12 08:31:56.95 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.11:39974 -[345 10-12 08:31:56.95 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 -[346 10-12 08:31:56.95 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 -[347 10-12 08:31:56.95 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 -[348 10-12 08:31:56.95 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 -[349 10-12 08:31:56.95 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 -[34a 10-12 08:31:56.95 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 -[34b 10-12 08:31:56.95 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 -[34c 10-12 08:31:56.95 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 -[34d 10-12 08:31:56.95 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 -[34e 10-12 08:31:56.95 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 -[34f 10-12 08:31:56.95 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 -[350 10-12 08:31:56.95 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 -[351 10-12 08:31:56.95 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 -[352 10-12 08:31:56.95 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 -[353 10-12 08:31:56.95 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 -[354 10-12 08:31:56.95 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 -[355 10-12 08:31:56.96 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 -[356 10-12 08:31:56.96 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 -[357 10-12 08:31:56.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[358 10-12 08:31:56.96 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 -[359 10-12 08:31:56.96 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 -[35a 10-12 08:31:56.96 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[35b 10-12 08:31:56.96 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[35c 10-12 08:31:56.96 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[35d 10-12 08:31:56.97 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[35e 10-12 08:31:56.97 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[35f 10-12 08:31:56.97 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[360 10-12 08:31:56.97 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[361 10-12 08:31:56.97 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[362 10-12 08:31:56.97 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[363 10-12 08:31:56.97 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 -[364 10-12 08:31:56.97 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 -[365 10-12 08:31:56.97 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 -[366 10-12 08:31:56.97 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 -[367 10-12 08:31:56.97 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 -[368 10-12 08:31:56.97 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 -[369 10-12 08:31:56.97 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 -[36a 10-12 08:31:56.97 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 -[36b 10-12 08:31:56.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[36c 10-12 08:31:56.97 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 -[36d 10-12 08:31:56.97 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 -[36e 10-12 08:31:56.98 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[36f 10-12 08:31:56.98 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[370 10-12 08:31:56.98 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[371 10-12 08:31:56.98 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[372 10-12 08:31:56.98 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[373 10-12 08:31:56.98 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[374 10-12 08:31:56.98 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[375 10-12 08:31:56.98 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[376 10-12 08:31:56.99 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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[377 10-12 08:31:56.99 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 -[378 10-12 08:31:56.99 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 -[379 10-12 08:31:56.99 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 -[37a 10-12 08:31:56.99 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 -[37b 10-12 08:31:56.99 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 -[37c 10-12 08:31:56.99 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 -[37d 10-12 08:31:56.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[37e 10-12 08:31:56.99 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 -[37f 10-12 08:31:56.99 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 -[380 10-12 08:31:56.99 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[381 10-12 08:31:56.99 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[382 10-12 08:31:56.99 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[383 10-12 08:31:56.99 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[384 10-12 08:31:56.99 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[385 10-12 08:31:56.99 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[386 10-12 08:31:56.99 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[387 10-12 08:31:56.99 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[388 10-12 08:31:56.99 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[389 10-12 08:31:56.99 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) -[38a 10-12 08:31:56.99 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 -[38b 10-12 08:31:56.99 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 -[38c 10-12 08:31:56.99 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 -[38d 10-12 08:31:56.99 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 -[38e 10-12 08:31:56.99 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 -[38f 10-12 08:31:56.99 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 -[390 10-12 08:31:56.99 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 -[391 10-12 08:31:56.99 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 -[392 10-12 08:31:56.99 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 -[393 10-12 08:31:56.99 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 -[394 10-12 08:31:56.99 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 -[395 10-12 08:31:56.99 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 -[396 10-12 08:31:56.99 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 -[397 10-12 08:31:56.99 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 -[398 10-12 08:31:56.99 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 -[399 10-12 08:31:56.99 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 -[39a 10-12 08:31:56.99 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 -[39b 10-12 08:31:56.99 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 -[39c 10-12 08:31:56.99 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 -[39d 10-12 08:31:56.99 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 -[39e 10-12 08:31:56.99 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 -[39f 10-12 08:31:57.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[3a0 10-12 08:31:57.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[3a1 10-12 08:31:57.00 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[3a2 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[3a3 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[3a4 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[3a5 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[3a6 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[3a7 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[3a8 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[3a9 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[3aa 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[3ab 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[3ac 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[3ad 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[3ae 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[3af 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[3b0 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[3b1 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[3b2 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[3b3 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[3b4 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[3b5 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[3b6 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[3b7 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[3b8 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[3b9 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[3ba 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[3bb 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[3bc 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[3bd 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[3be 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[3bf 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[3c0 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[3c1 10-12 08:31:57.01 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[3c2 10-12 08:31:57.01 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: [Groups] /Channel -[3c3 10-12 08:31:57.01 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: [Groups] /Channel/Application -[3c4 10-12 08:31:57.01 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: [Groups] /Channel/Application/Org1MSP -[3c5 10-12 08:31:57.01 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: [Groups] /Channel/Application/Org2MSP -[3c6 10-12 08:31:57.01 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: [Values] /Channel/Consortium -[3c7 10-12 08:31:57.01 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: [Groups] /Channel -[3c8 10-12 08:31:57.01 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: [Groups] /Channel/Application -[3c9 10-12 08:31:57.01 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: [Groups] /Channel/Application/Org1MSP -[3ca 10-12 08:31:57.01 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: [Groups] /Channel/Application/Org2MSP -[3cb 10-12 08:31:57.01 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 -[3cc 10-12 08:31:57.01 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 -[3cd 10-12 08:31:57.01 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 -[3ce 10-12 08:31:57.01 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: [Values] /Channel/Consortium -[3cf 10-12 08:31:57.01 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 -[3d0 10-12 08:31:57.01 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 -[3d1 10-12 08:31:57.01 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 -[3d2 10-12 08:31:57.01 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: [Groups] /Channel/Application -[3d3 10-12 08:31:57.01 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 -[3d4 10-12 08:31:57.01 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 [] -[3d5 10-12 08:31:57.01 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 -[3d6 10-12 08:31:57.01 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 -[3d7 10-12 08:31:57.01 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] -[3d8 10-12 08:31:57.01 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 -[3d9 10-12 08:31:57.01 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 -[3da 10-12 08:31:57.01 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 [] -[3db 10-12 08:31:57.01 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 -[3dc 10-12 08:31:57.01 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 -[3dd 10-12 08:31:57.01 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 == -[3de 10-12 08:31:57.01 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 -[3df 10-12 08:31:57.01 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 == -[3e0 10-12 08:31:57.01 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 -[3e1 10-12 08:31:57.02 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[3e2 10-12 08:31:57.02 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 0xc42000e028 gate 1507797117022689006 evaluation starts -[3e3 10-12 08:31:57.02 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 0xc42000e028 signed by 0 principal evaluation starts (used [false]) -[3e4 10-12 08:31:57.02 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 0xc42000e028 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[3e5 10-12 08:31:57.02 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 0xc42000e028 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[3e6 10-12 08:31:57.02 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 0xc42000e028 principal evaluation fails -[3e7 10-12 08:31:57.02 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 0xc42000e028 gate 1507797117022689006 evaluation fails -[3e8 10-12 08:31:57.02 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 -[3e9 10-12 08:31:57.02 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 -[3ea 10-12 08:31:57.02 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 == -[3eb 10-12 08:31:57.02 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 0xc42000e038 gate 1507797117028247091 evaluation starts -[3ec 10-12 08:31:57.02 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 0xc42000e038 signed by 0 principal evaluation starts (used [false]) -[3ed 10-12 08:31:57.02 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 0xc42000e038 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[3ee 10-12 08:31:57.02 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 -[3ef 10-12 08:31:57.02 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 0xc42000e038 principal matched by identity 0 -[3f0 10-12 08:31:57.02 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 27 cd d0 07 d1 c4 67 14 3c 57 c0 6b 4b f3 2e 58 |'.....g. DEBU Verify: sig = 00000000 30 45 02 21 00 eb db ad 19 82 17 f1 54 53 a4 59 |0E.!........TS.Y| -00000010 72 2e 75 b6 40 f3 1d 61 df 4a 20 02 05 69 09 13 |r.u.@..a.J ..i..| -00000020 78 4b c8 73 b6 02 20 19 eb 57 bb 01 cd db 71 e9 |xK.s.. ..W....q.| -00000030 b2 95 ff 21 1d b4 48 8d d0 b2 49 eb 99 28 0b d3 |...!..H...I..(..| -00000040 46 3f 8a 0f 7d ca d9 |F?..}..| -[3f2 10-12 08:31:57.02 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 0xc42000e038 principal evaluation succeeds for identity 0 -[3f3 10-12 08:31:57.02 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 0xc42000e038 gate 1507797117028247091 evaluation succeeds -[3f4 10-12 08:31:57.02 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 -[3f5 10-12 08:31:57.02 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 -[3f6 10-12 08:31:57.02 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 -[3f7 10-12 08:31:57.02 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 -[3f8 10-12 08:31:57.03 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" -[3f9 10-12 08:31:57.03 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" -[3fa 10-12 08:31:57.03 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" -[3fb 10-12 08:31:57.03 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" -[3fc 10-12 08:31:57.03 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" -[3fd 10-12 08:31:57.03 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" -[3fe 10-12 08:31:57.03 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" -[3ff 10-12 08:31:57.03 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" -[400 10-12 08:31:57.03 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" -[401 10-12 08:31:57.03 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" -[402 10-12 08:31:57.03 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" -[403 10-12 08:31:57.03 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" -[404 10-12 08:31:57.03 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" -[405 10-12 08:31:57.04 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" -[406 10-12 08:31:57.04 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" -[407 10-12 08:31:57.04 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" -[408 10-12 08:31:57.04 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" -[409 10-12 08:31:57.04 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" -[40a 10-12 08:31:57.04 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" -[40b 10-12 08:31:57.04 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 -[40c 10-12 08:31:57.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[40d 10-12 08:31:57.04 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 -[40e 10-12 08:31:57.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[40f 10-12 08:31:57.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FDD0FCCE0522...B784AF17548D3482400FC66B6FE7473E -[410 10-12 08:31:57.04 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 62295050FA8F78029263C7FCE531D19E70957E20DCD8A34C95B68E511C97F266 -[411 10-12 08:31:57.05 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 -[412 10-12 08:31:57.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[413 10-12 08:31:57.05 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 -[414 10-12 08:31:57.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[415 10-12 08:31:57.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608FDD0FCCE0522...E41E1A5822721201E54DE1DA56004FF3 -[416 10-12 08:31:57.05 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: FCD6EF31ABC4A9646B87F0FAC02DEEE93DFDD15D1961CE9D1BF198B189E6DA70 -[417 10-12 08:31:57.05 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 == -[418 10-12 08:31:57.05 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 -[419 10-12 08:31:57.05 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 == -[41a 10-12 08:31:57.05 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 -[41b 10-12 08:31:57.05 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 == -[41c 10-12 08:31:57.05 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 0xc42000e1c8 gate 1507797117053325652 evaluation starts -[41d 10-12 08:31:57.05 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 0xc42000e1c8 signed by 0 principal evaluation starts (used [false]) -[41e 10-12 08:31:57.05 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 0xc42000e1c8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f6741774942416749524149523249436e69564f71416d6b2f76346a726f7a466377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a30444151634451674145465732366339464b4c38556a57303259706c487252527550575566436e7a44484158456a663768494a78635730384d430a576f357254537a3746685937776965684a4a39336376642b49646b77594e706347776f4265714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167325a714c67794e4a314f39632f7a56373162416753664737396a47720a4b4a38667273634332614d3743746b77436759494b6f5a497a6a3045417749445277417752414968414e693445306d326a416c77646b7376587a3047453157430a78674c384e6f306f35576d764f534c73332f6a4441683872496b4678716552484e69756c6d567a6c49394f4467745a37627143584c313377457779374f4a42500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[41f 10-12 08:31:57.05 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 -[420 10-12 08:31:57.05 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 -[421 10-12 08:31:57.05 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 0xc42000e1c8 principal matched by identity 0 -[422 10-12 08:31:57.05 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 fc d6 ef 31 ab c4 a9 64 6b 87 f0 fa c0 2d ee e9 |...1...dk....-..| -00000010 3d fd d1 5d 19 61 ce 9d 1b f1 98 b1 89 e6 da 70 |=..].a.........p| -[423 10-12 08:31:57.05 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 01 ad 40 57 a9 5f 5a 98 d9 ca 80 88 |0D. ..@W._Z.....| -00000010 4c fe 90 b4 69 31 c3 62 98 1a 61 a4 a5 3a 87 43 |L...i1.b..a..:.C| -00000020 19 31 25 f5 02 20 1a 4b 46 b1 46 ae 0f 75 80 90 |.1%.. .KF.F..u..| -00000030 b6 83 c7 0a 96 96 51 65 65 9e 58 b2 da 1c 53 4f |......Qee.X...SO| -00000040 71 ba fe 8f 52 24 |q...R$| -[424 10-12 08:31:57.05 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 0xc42000e1c8 principal evaluation succeeds for identity 0 -[425 10-12 08:31:57.05 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 0xc42000e1c8 gate 1507797117053325652 evaluation succeeds -[426 10-12 08:31:57.05 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 -[427 10-12 08:31:57.05 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 -[428 10-12 08:31:57.05 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 -[429 10-12 08:31:57.05 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 -[42a 10-12 08:31:57.05 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 -[42b 10-12 08:31:57.05 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 -[42c 10-12 08:31:57.05 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 -[42d 10-12 08:31:57.05 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 -[42e 10-12 08:31:57.05 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 -[42f 10-12 08:31:57.05 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 -[430 10-12 08:31:57.05 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 -[431 10-12 08:31:57.05 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 -[432 10-12 08:31:57.05 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 -[433 10-12 08:31:57.05 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 -[434 10-12 08:31:57.05 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 -[435 10-12 08:31:57.05 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 -[436 10-12 08:31:57.05 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 -[437 10-12 08:31:57.05 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 -[438 10-12 08:31:57.05 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 -[439 10-12 08:31:57.05 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 -[43a 10-12 08:31:57.05 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[43b 10-12 08:31:57.05 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 -[43c 10-12 08:31:57.05 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 -[43d 10-12 08:31:57.05 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[43e 10-12 08:31:57.05 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[43f 10-12 08:31:57.05 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[440 10-12 08:31:57.05 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[441 10-12 08:31:57.05 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[442 10-12 08:31:57.05 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[443 10-12 08:31:57.05 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[444 10-12 08:31:57.05 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[445 10-12 08:31:57.05 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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[446 10-12 08:31:57.05 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 -[447 10-12 08:31:57.06 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 -[448 10-12 08:31:57.06 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 -[449 10-12 08:31:57.06 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 -[44a 10-12 08:31:57.06 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 -[44b 10-12 08:31:57.06 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 -[44c 10-12 08:31:57.06 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[44d 10-12 08:31:57.06 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 -[44e 10-12 08:31:57.06 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 -[44f 10-12 08:31:57.06 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[450 10-12 08:31:57.06 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[451 10-12 08:31:57.06 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[452 10-12 08:31:57.06 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[453 10-12 08:31:57.06 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[454 10-12 08:31:57.06 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[455 10-12 08:31:57.06 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[456 10-12 08:31:57.06 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[457 10-12 08:31:57.06 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[458 10-12 08:31:57.06 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 -[459 10-12 08:31:57.06 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 -[45a 10-12 08:31:57.06 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 -[45b 10-12 08:31:57.06 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 -[45c 10-12 08:31:57.06 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 -[45d 10-12 08:31:57.06 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 -[45e 10-12 08:31:57.06 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 -[45f 10-12 08:31:57.06 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 -[460 10-12 08:31:57.06 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 -[461 10-12 08:31:57.06 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 -[462 10-12 08:31:57.06 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[463 10-12 08:31:57.06 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 -[464 10-12 08:31:57.06 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 -[465 10-12 08:31:57.06 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[466 10-12 08:31:57.06 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[467 10-12 08:31:57.06 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[468 10-12 08:31:57.06 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[469 10-12 08:31:57.06 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[46a 10-12 08:31:57.06 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[46b 10-12 08:31:57.06 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[46c 10-12 08:31:57.06 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[46d 10-12 08:31:57.06 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[46e 10-12 08:31:57.06 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) -[46f 10-12 08:31:57.06 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 -[470 10-12 08:31:57.06 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 -[471 10-12 08:31:57.06 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 -[472 10-12 08:31:57.06 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 -[473 10-12 08:31:57.06 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 -[474 10-12 08:31:57.06 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 -[475 10-12 08:31:57.06 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 -[476 10-12 08:31:57.06 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 -[477 10-12 08:31:57.06 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 -[478 10-12 08:31:57.06 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 -[479 10-12 08:31:57.06 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 -[47a 10-12 08:31:57.06 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 -[47b 10-12 08:31:57.06 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 -[47c 10-12 08:31:57.07 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 -[47d 10-12 08:31:57.07 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 -[47e 10-12 08:31:57.07 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 -[47f 10-12 08:31:57.07 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 -[480 10-12 08:31:57.07 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 -[481 10-12 08:31:57.07 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 -[482 10-12 08:31:57.07 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 -[483 10-12 08:31:57.07 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 -[484 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[485 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[486 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[487 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[488 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[489 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[48a 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[48b 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[48c 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[48d 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[48e 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[48f 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[490 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[491 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[492 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[493 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[494 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[495 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[496 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[497 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[498 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[499 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[49a 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[49b 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[49c 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[49d 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[49e 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[49f 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[4a0 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[4a1 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[4a2 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[4a3 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[4a4 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[4a5 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[4a6 10-12 08:31:57.07 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[4a7 10-12 08:31:57.07 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: [Groups] /Channel -[4a8 10-12 08:31:57.07 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: [Groups] /Channel/Application -[4a9 10-12 08:31:57.07 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: [Groups] /Channel/Application/Org1MSP -[4aa 10-12 08:31:57.07 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: [Groups] /Channel/Application/Org2MSP -[4ab 10-12 08:31:57.07 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: [Values] /Channel/Consortium -[4ac 10-12 08:31:57.07 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: [Groups] /Channel -[4ad 10-12 08:31:57.07 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: [Groups] /Channel/Application -[4ae 10-12 08:31:57.07 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: [Groups] /Channel/Application/Org1MSP -[4af 10-12 08:31:57.07 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: [Groups] /Channel/Application/Org2MSP -[4b0 10-12 08:31:57.07 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 -[4b1 10-12 08:31:57.07 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 -[4b2 10-12 08:31:57.07 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 -[4b3 10-12 08:31:57.07 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: [Values] /Channel/Consortium -[4b4 10-12 08:31:57.07 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: [Groups] /Channel/Application -[4b5 10-12 08:31:57.07 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 -[4b6 10-12 08:31:57.07 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 [] -[4b7 10-12 08:31:57.07 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 -[4b8 10-12 08:31:57.07 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 -[4b9 10-12 08:31:57.07 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] -[4ba 10-12 08:31:57.07 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 -[4bb 10-12 08:31:57.07 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 -[4bc 10-12 08:31:57.07 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 [] -[4bd 10-12 08:31:57.07 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 -[4be 10-12 08:31:57.07 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 -[4bf 10-12 08:31:57.07 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 == -[4c0 10-12 08:31:57.07 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 -[4c1 10-12 08:31:57.07 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 == -[4c2 10-12 08:31:57.07 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 -[4c3 10-12 08:31:57.07 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[4c4 10-12 08:31:57.07 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 0xc42000f880 gate 1507797117076411840 evaluation starts -[4c5 10-12 08:31:57.07 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 0xc42000f880 signed by 0 principal evaluation starts (used [false]) -[4c6 10-12 08:31:57.07 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 0xc42000f880 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[4c7 10-12 08:31:57.07 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 -[4c8 10-12 08:31:57.07 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 0xc42000f880 principal matched by identity 0 -[4c9 10-12 08:31:57.07 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 27 cd d0 07 d1 c4 67 14 3c 57 c0 6b 4b f3 2e 58 |'.....g. DEBU Verify: sig = 00000000 30 45 02 21 00 eb db ad 19 82 17 f1 54 53 a4 59 |0E.!........TS.Y| -00000010 72 2e 75 b6 40 f3 1d 61 df 4a 20 02 05 69 09 13 |r.u.@..a.J ..i..| -00000020 78 4b c8 73 b6 02 20 19 eb 57 bb 01 cd db 71 e9 |xK.s.. ..W....q.| -00000030 b2 95 ff 21 1d b4 48 8d d0 b2 49 eb 99 28 0b d3 |...!..H...I..(..| -00000040 46 3f 8a 0f 7d ca d9 |F?..}..| -[4cb 10-12 08:31:57.07 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 0xc42000f880 principal evaluation succeeds for identity 0 -[4cc 10-12 08:31:57.07 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 0xc42000f880 gate 1507797117076411840 evaluation succeeds -[4cd 10-12 08:31:57.07 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 -[4ce 10-12 08:31:57.07 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 -[4cf 10-12 08:31:57.07 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 -[4d0 10-12 08:31:57.07 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 -[4d1 10-12 08:31:57.07 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 -[4d2 10-12 08:31:57.07 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 -[4d3 10-12 08:31:57.07 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 -[4d4 10-12 08:31:57.07 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" -[4d5 10-12 08:31:57.07 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" -[4d6 10-12 08:31:57.07 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" -[4d7 10-12 08:31:57.07 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" -[4d8 10-12 08:31:57.07 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" -[4d9 10-12 08:31:57.07 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" -[4da 10-12 08:31:57.07 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" -[4db 10-12 08:31:57.07 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" -[4dc 10-12 08:31:57.07 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" -[4dd 10-12 08:31:57.07 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" -[4de 10-12 08:31:57.07 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" -[4df 10-12 08:31:57.07 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" -[4e0 10-12 08:31:57.07 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" -[4e1 10-12 08:31:57.07 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" -[4e2 10-12 08:31:57.07 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" -[4e3 10-12 08:31:57.07 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" -[4e4 10-12 08:31:57.07 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" -[4e5 10-12 08:31:57.07 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" -[4e6 10-12 08:31:57.07 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" -[4e7 10-12 08:31:57.07 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 -[4e8 10-12 08:31:57.08 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 -[4e9 10-12 08:31:57.08 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 -[4ea 10-12 08:31:57.08 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 -[4eb 10-12 08:31:57.08 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 -[4ec 10-12 08:31:57.08 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 -[4ed 10-12 08:31:57.08 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 -[4ee 10-12 08:31:57.08 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 -[4ef 10-12 08:31:57.08 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 -[4f0 10-12 08:31:57.08 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 -[4f1 10-12 08:31:57.08 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 -[4f2 10-12 08:31:57.08 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 -[4f3 10-12 08:31:57.08 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 -[4f4 10-12 08:31:57.08 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 -[4f5 10-12 08:31:57.08 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 -[4f6 10-12 08:31:57.10 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 -[4f7 10-12 08:31:57.10 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4f8 10-12 08:31:57.10 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 -[4f9 10-12 08:31:57.10 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 -[4fa 10-12 08:31:57.10 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[4fb 10-12 08:31:57.10 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[4fc 10-12 08:31:57.10 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[4fd 10-12 08:31:57.11 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[4fe 10-12 08:31:57.11 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[4ff 10-12 08:31:57.11 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[500 10-12 08:31:57.11 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[501 10-12 08:31:57.11 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[502 10-12 08:31:57.11 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[503 10-12 08:31:57.11 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 -[504 10-12 08:31:57.11 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 -[505 10-12 08:31:57.11 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 -[506 10-12 08:31:57.11 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 -[507 10-12 08:31:57.11 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 -[508 10-12 08:31:57.11 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 -[509 10-12 08:31:57.11 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 -[50a 10-12 08:31:57.11 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 -[50b 10-12 08:31:57.11 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[50c 10-12 08:31:57.11 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 -[50d 10-12 08:31:57.11 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 -[50e 10-12 08:31:57.11 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[50f 10-12 08:31:57.11 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[510 10-12 08:31:57.11 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[511 10-12 08:31:57.11 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[512 10-12 08:31:57.11 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[513 10-12 08:31:57.11 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[514 10-12 08:31:57.11 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[515 10-12 08:31:57.12 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[516 10-12 08:31:57.16 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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[517 10-12 08:31:57.16 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 -[518 10-12 08:31:57.16 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 -[519 10-12 08:31:57.16 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 -[51a 10-12 08:31:57.16 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 -[51b 10-12 08:31:57.16 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 -[51c 10-12 08:31:57.16 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 -[51d 10-12 08:31:57.16 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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[51e 10-12 08:31:57.16 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 -[51f 10-12 08:31:57.16 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 -[520 10-12 08:31:57.17 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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[521 10-12 08:31:57.17 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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[522 10-12 08:31:57.17 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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[523 10-12 08:31:57.17 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[524 10-12 08:31:57.17 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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[525 10-12 08:31:57.17 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.setupCAs -> DEBU Load Admin Certs as msp.admins -[526 10-12 08:31:57.17 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[527 10-12 08:31:57.18 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[528 10-12 08:31:57.18 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[529 10-12 08:31:57.18 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) -[52a 10-12 08:31:57.18 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 -[52b 10-12 08:31:57.18 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 -[52c 10-12 08:31:57.18 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 -[52d 10-12 08:31:57.18 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 -[52e 10-12 08:31:57.18 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 -[52f 10-12 08:31:57.18 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 -[530 10-12 08:31:57.18 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 -[531 10-12 08:31:57.18 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 -[532 10-12 08:31:57.18 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 -[533 10-12 08:31:57.18 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 -[534 10-12 08:31:57.18 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 -[535 10-12 08:31:57.18 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 -[536 10-12 08:31:57.18 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 -[537 10-12 08:31:57.18 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 -[538 10-12 08:31:57.18 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 -[539 10-12 08:31:57.18 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 -[53a 10-12 08:31:57.18 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 -[53b 10-12 08:31:57.18 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 -[53c 10-12 08:31:57.18 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 -[53d 10-12 08:31:57.18 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 -[53e 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[53f 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[540 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[541 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[542 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[543 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[544 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[545 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[546 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[547 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[548 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[549 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[54a 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[54b 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[54c 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[54d 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[54e 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[54f 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[550 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[551 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[552 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[553 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[554 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[555 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[556 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[557 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[558 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[559 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[55a 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[55b 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[55c 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[55d 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[55e 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[55f 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[560 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[561 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[562 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[563 10-12 08:31:57.19 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Configure.Configure.enqueue -> DEBU [channel: testchainid] Enqueueing envelope... -[564 10-12 08:31:57.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Configure.Configure.enqueue -> DEBU [channel: testchainid] Envelope enqueued successfully -[565 10-12 08:31:57.27 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.11:39974 -[566 10-12 08:31:57.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: testchainid] Successfully unmarshalled consumed message, offset is 1. Inspecting type... -[567 10-12 08:31:57.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU Process a Regular msg start. -[568 10-12 08:31:57.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU [channel: testchainid] Processing regular Kafka message of type CONFIG -[569 10-12 08:31:57.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2 -> DEBU [channel: testchainid] Received config message -[56a 10-12 08:31:57.27 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2 -> DEBU [channel: testchainid] Creating isolated block for config message -[56b 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources -> DEBU configEnvelope=config: > 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" > > 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: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > > > last_update:\232|{i\3230\270\342\312\257\370\240\035\026\341\370G]\236\002 \033\271L\336\223\374\224\217\024\361'\225\254Q\202.\267\204\257\027T\2154\202@\017\306ko\347G>" > -[56c 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[56d 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[56e 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[56f 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[570 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[571 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[572 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[573 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[574 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[575 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[576 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[577 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[578 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[579 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[57a 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[57b 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[57c 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[57e 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.11:39974: rpc error: code = Canceled desc = context canceled -[57f 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[580 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.11:39972 because channel businesschannel not found -[581 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:39972 -[582 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39972 -[57d 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[583 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[584 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[585 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[586 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[587 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[588 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[589 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[58a 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:39972: rpc error: code = Canceled desc = context canceled -[58b 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[58c 10-12 08:31:57.28 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[58d 10-12 08:31:57.29 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[58e 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[58f 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[590 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[591 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[592 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[593 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[594 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[595 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[596 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[597 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[598 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[599 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[59a 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[59b 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[59c 10-12 08:31:57.30 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[59d 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[59e 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[59f 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[5a0 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[5a1 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[5a2 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[5a3 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[5a4 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[5a5 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[5a6 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5a7 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[5a8 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[5a9 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5aa 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[5ab 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[5ac 10-12 08:31:57.31 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[5ad 10-12 08:31:57.32 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[5ae 10-12 08:31:57.32 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[5af 10-12 08:31:57.32 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[5b0 10-12 08:31:57.32 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[5b1 10-12 08:31:57.32 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[5b2 10-12 08:31:57.32 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[5b3 10-12 08:31:57.32 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[5b4 10-12 08:31:57.33 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[5b5 10-12 08:31:57.33 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[5b6 10-12 08:31:57.33 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[5b7 10-12 08:31:57.33 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[5b8 10-12 08:31:57.33 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[5b9 10-12 08:31:57.33 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[5ba 10-12 08:31:57.33 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[5bb 10-12 08:31:57.33 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[5bc 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[5bd 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[5be 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[5bf 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[5c0 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[5c1 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[5c2 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[5c3 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[5c4 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[5c5 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[5c6 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[5c7 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[5c8 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[5c9 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[5ca 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[5cb 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[5cc 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[5cd 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[5ce 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[5cf 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[5d0 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[5d1 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[5d2 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[5d3 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[5d4 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[5d5 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[5d6 10-12 08:31:57.34 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[5d7 10-12 08:31:57.35 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[5d8 10-12 08:31:57.35 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[5d9 10-12 08:31:57.35 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[5da 10-12 08:31:57.35 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[5db 10-12 08:31:57.35 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[5dc 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[5dd 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[5de 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[5df 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[5e0 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[5e1 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[5e2 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[5e3 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[5e4 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[5e5 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[5e6 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[5e7 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[5e8 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[5e9 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[5ea 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[5eb 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[5ec 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[5ed 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[5ee 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[5ef 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[5f0 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[5f1 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[5f2 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[5f3 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[5f4 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[5f5 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[5f6 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[5f7 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[5f8 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[5f9 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[5fa 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[5fb 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[5fc 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[5fd 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[5fe 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[5ff 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[600 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate -> DEBU fileLedgerFactory will GetOrCreate businesschannel -[601 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block Mgr for ledger: businesschannel -[602 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU conf.getLedgerBlockDir=/var/hyperledger/production/orderer/chains/businesschannel -[603 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -[604 10-12 08:31:57.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -[605 10-12 08:31:57.37 UTC] [github.com/hyperledger/fabric/common/ledger/util] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -[606 10-12 08:31:57.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU loadExisting checkpointInfo= -[607 10-12 08:31:57.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU No checkpointInfo found, saveCurrentInfo latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] to leveldb -[608 10-12 08:31:57.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -[609 10-12 08:31:57.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -[60a 10-12 08:31:57.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[60b 10-12 08:31:57.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[60c 10-12 08:31:57.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -[60d 10-12 08:31:57.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -2017/10/12 08:31:57 proto: textWriter unindented too far -2017/10/12 08:31:57 proto: textWriter unindented too far -[60e 10-12 08:31:57.38 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.Append -> DEBU Add block to ledger: header:<6:39 0:"\x00" } 0:4 4:3879113 12:619273117 } 0:1574259780 14:/* unknown wire type 7 */ 12:/* unknown wire type 6 */ 4:/* unknown wire type 6 */ 0:/* unknown wire type 7 */ 8:2530354473 4:/* unexpected EOF */ 7:/* unexpected EOF */ >data:<1:"\n\xcd\x06\n\x1b\b\x01\x1a\x06\b\xfd\xd0\xfc\xce\x05\"\x0fbusinesschannel\x12\xad\x06\n\x90\x06\n\nOrdererMSP\x12\x81\x06-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\x12\x18\xc5\x14\xf3d\xde\x11=\x8e(t\xc2n=\xc5\x1bnn\x8d\xa8~\xb0\xc5Y\xb8\x12\xc8X\n\xf3E\b\x01\x12\xeeE\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins*\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins\x12\xd0+\n\vApplication\x12\xc0+\b\x01\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\x12\xa2\x15\n\aOrg1MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins*\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\x12\xcf\x12\n\x84\x12\n\xdf\x06\n\x1b\b\x02\x1a\x06\b\xfc\xd0\xfc\xce\x05\"\x0fbusinesschannel\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\"\rk\xacv\xce\xcb\x06u\xb3\xb8؉!9\xc5\x11\xb5\xc2)E\xef\x04)\x12\x9f\v\n\x8e\x04\n\x0fbusinesschannel\x12O\x12)\n\vApplication\x12\x1a\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1a\xc7\x01\x12\xa0\x01\n\vApplication\x12\x90\x01\b\x01\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium*\xdf\x01\n\x0erscc_seed_data\x12\xcc\x01\x12\xc7\x01\x1aM\n\rQSCC.Example1\x12<\x12\x1d\n\x1b/Channel/Application/Admins\x1a\x1b/Channel/Application/Admins\x1a9\n\rQSCC.Example2\x12(\x12\t\n\aExample\x1a\x1b/Channel/Application/Admins\"\x1e\n\aExample\x12\x13\x12\b\b\x01\x12\x04\x12\x02\x12\x00\x1a\aExample*\x1b/Channel/Application/Admins\x18\x01\x12\x8b\a\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18O\u007f\xf3\x80\v0\xea Օ{\xff\xaf\x0fm3_l\x83_\t85\xf3\x12G0E\x02!\x00\xebۭ\x19\x82\x17\xf1TS\xa4Yr.u\xb6@\xf3\x1da\xdfJ \x02\x05i\t\x13xK\xc8s\xb6\x02 \x19\xebW\xbb\x01\xcd\xdbq鲕\xff!\x1d\xb4H\x8dвI\xeb\x99(\v\xd3F?\x8a\x0f}\xca\xd9\x12F0D\x02 F\x1aF\xa9\x16\xd6\xc5Z\xa3\xd7j&>\x9a|{i\xd30\xb8\xe2ʯ\xf8\xa0\x1d\x16\xe1\xf8G]\x9e\x02 \x1b\xb9Lޓ\xfc\x94\x8f\x14\xf1'\x95\xacQ\x82.\xb7\x84\xaf\x17T\x8d4\x82@\x0f\xc6ko\xe7G>" 2:"0E\x02!\x00\xdbA\x1b\xc6\xd6\x00\xc0띜\x87\xa2g\x0eIJG\xd2\xd2\xe17\"RD\x0e\xd7\xe4 \xf2\xac\xd3[\x02 &\x85\x0eU\xdf露#\xea\xec^\x01w\xf0(\xe4\x1e\x1aX\"r\x12\x01\xe5M\xe1\xdaV\x00O\xf3" >metadata: -2017/10/12 08:31:57 proto: textWriter unindented too far -2017/10/12 08:31:57 proto: textWriter unindented too far -[60f 10-12 08:31:57.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr, block=header:<6:39 0:"\x00" } 0:4 4:3879113 12:619273117 } 0:1574259780 14:/* unknown wire type 7 */ 12:/* unknown wire type 6 */ 4:/* unknown wire type 6 */ 0:/* unknown wire type 7 */ 8:2530354473 4:/* unexpected EOF */ 7:/* unexpected EOF */ >data:<1:"\n\xcd\x06\n\x1b\b\x01\x1a\x06\b\xfd\xd0\xfc\xce\x05\"\x0fbusinesschannel\x12\xad\x06\n\x90\x06\n\nOrdererMSP\x12\x81\x06-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\x12\x18\xc5\x14\xf3d\xde\x11=\x8e(t\xc2n=\xc5\x1bnn\x8d\xa8~\xb0\xc5Y\xb8\x12\xc8X\n\xf3E\b\x01\x12\xeeE\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins*\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins\x12\xd0+\n\vApplication\x12\xc0+\b\x01\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\x12\xa2\x15\n\aOrg1MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins*\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\x12\xcf\x12\n\x84\x12\n\xdf\x06\n\x1b\b\x02\x1a\x06\b\xfc\xd0\xfc\xce\x05\"\x0fbusinesschannel\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\"\rk\xacv\xce\xcb\x06u\xb3\xb8؉!9\xc5\x11\xb5\xc2)E\xef\x04)\x12\x9f\v\n\x8e\x04\n\x0fbusinesschannel\x12O\x12)\n\vApplication\x12\x1a\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1a\xc7\x01\x12\xa0\x01\n\vApplication\x12\x90\x01\b\x01\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium*\xdf\x01\n\x0erscc_seed_data\x12\xcc\x01\x12\xc7\x01\x1aM\n\rQSCC.Example1\x12<\x12\x1d\n\x1b/Channel/Application/Admins\x1a\x1b/Channel/Application/Admins\x1a9\n\rQSCC.Example2\x12(\x12\t\n\aExample\x1a\x1b/Channel/Application/Admins\"\x1e\n\aExample\x12\x13\x12\b\b\x01\x12\x04\x12\x02\x12\x00\x1a\aExample*\x1b/Channel/Application/Admins\x18\x01\x12\x8b\a\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18O\u007f\xf3\x80\v0\xea Օ{\xff\xaf\x0fm3_l\x83_\t85\xf3\x12G0E\x02!\x00\xebۭ\x19\x82\x17\xf1TS\xa4Yr.u\xb6@\xf3\x1da\xdfJ \x02\x05i\t\x13xK\xc8s\xb6\x02 \x19\xebW\xbb\x01\xcd\xdbq鲕\xff!\x1d\xb4H\x8dвI\xeb\x99(\v\xd3F?\x8a\x0f}\xca\xd9\x12F0D\x02 F\x1aF\xa9\x16\xd6\xc5Z\xa3\xd7j&>\x9a|{i\xd30\xb8\xe2ʯ\xf8\xa0\x1d\x16\xe1\xf8G]\x9e\x02 \x1b\xb9Lޓ\xfc\x94\x8f\x14\xf1'\x95\xacQ\x82.\xb7\x84\xaf\x17T\x8d4\x82@\x0f\xc6ko\xe7G>" 2:"0E\x02!\x00\xdbA\x1b\xc6\xd6\x00\xc0띜\x87\xa2g\x0eIJG\xd2\xd2\xe17\"RD\x0e\xd7\xe4 \xf2\xac\xd3[\x02 &\x85\x0eU\xdf露#\xea\xec^\x01w\xf0(\xe4\x1e\x1aX\"r\x12\x01\xe5M\xe1\xdaV\x00O\xf3" >metadata: -[610 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.Append.AddBlock.addBlock -> DEBU Save new checkpoint info to the levelDB: latestFileChunkSuffixNum=[0], latestFileChunksize=[12308], isChainEmpty=[false], lastBlockNumber=[0] -[611 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x18, 0xbc, 0x52, 0xdb, 0xcc, 0x4f, 0xb5, 0xbf, 0x16, 0xaf, 0x43, 0x38, 0xd7, 0x79, 0xea, 0x17, 0xf7, 0x9d, 0x8b, 0x5c, 0x6f, 0x7d, 0xa9, 0x72, 0xaf, 0xbb, 0x99, 0x90, 0x3e, 0xc9, 0xd0, 0xf} txOffsets= -txId= locPointer=offset=38, bytesLength=12265 -] -[612 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12308], isChainEmpty=[false], lastBlockNumber=[0] -[613 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[614 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12308], Going to peek [8] bytes -[615 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12306], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[616 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12306] read from file [0] -[617 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) -[618 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport.HandleChain.newChain -> INFO [channel: businesschannel] Starting chain with last persisted offset -3 and last recorded block 0 -[619 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -[61a 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -[61b 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[61c 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[61d 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[61e 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[61f 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...E5AB4A9CBFD97BCD2B26C8837AB86F5A -[620 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 3FB06FA6040B726C20323B9689EFE06722F564078809DB332CA213D57A56CA05 -[621 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[622 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[623 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -[624 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[625 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[626 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...E5AB4A9CBFD97BCD2B26C8837AB86F5A -[627 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: B475740FDDEF1FD7295E27BC4C9E6D172B0453B058392B65F42819978F07C34C -[629 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> DEBU startThread() begin -[62a 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel -> INFO [channel: businesschannel] Setting up the producer for this channel... -[62b 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel.retry.try -> DEBU [channel: businesschannel] Connecting to the Kafka cluster -[62c 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient -> DEBU Initializing new client -[62d 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[62e 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.any.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[62f 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for all topics from broker kafka0:9092 -[628 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] commitBlock.Append.Append -> DEBU Add block to ledger: header:<6:71 0:"\x01" } 4:4335 7:/* unexpected EOF */ 10 { 10 { 1831:/* unknown wire type 7 */ 142695:/* unknown wire type 6 */ 15:/* unknown wire type 6 */ 27978 { 6:/* unknown wire type 6 */ 220158:1000744874119507296 11:/* unexpected EOF */ 4:107699043 4:5217 3346366563:11262002819717861805 253335:/* unknown wire type 7 */ 697:2055456806 1783:90 >data:<1:"\n\xc9\x06\n\x17\b\x04\x1a\x06\b\xfd\xd0\xfc\xce\x05\"\vtestchainid\x12\xad\x06\n\x90\x06\n\nOrdererMSP\x12\x81\x06-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\x12\x187\re>`\xe4\x80_\n\x86\xa6e\xf8\xf6=\x91\x16\xc1\x99\xb4v\x03\xb6X\x12\xe7_\n\x9b_\n\xcd\x06\n\x1b\b\x01\x1a\x06\b\xfd\xd0\xfc\xce\x05\"\x0fbusinesschannel\x12\xad\x06\n\x90\x06\n\nOrdererMSP\x12\x81\x06-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\x12\x18\xc5\x14\xf3d\xde\x11=\x8e(t\xc2n=\xc5\x1bnn\x8d\xa8~\xb0\xc5Y\xb8\x12\xc8X\n\xf3E\b\x01\x12\xeeE\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins*\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins\x12\xd0+\n\vApplication\x12\xc0+\b\x01\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\x12\xa2\x15\n\aOrg1MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins*\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\x12\xcf\x12\n\x84\x12\n\xdf\x06\n\x1b\b\x02\x1a\x06\b\xfc\xd0\xfc\xce\x05\"\x0fbusinesschannel\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\"\rk\xacv\xce\xcb\x06u\xb3\xb8؉!9\xc5\x11\xb5\xc2)E\xef\x04)\x12\x9f\v\n\x8e\x04\n\x0fbusinesschannel\x12O\x12)\n\vApplication\x12\x1a\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1a\xc7\x01\x12\xa0\x01\n\vApplication\x12\x90\x01\b\x01\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium*\xdf\x01\n\x0erscc_seed_data\x12\xcc\x01\x12\xc7\x01\x1aM\n\rQSCC.Example1\x12<\x12\x1d\n\x1b/Channel/Application/Admins\x1a\x1b/Channel/Application/Admins\x1a9\n\rQSCC.Example2\x12(\x12\t\n\aExample\x1a\x1b/Channel/Application/Admins\"\x1e\n\aExample\x12\x13\x12\b\b\x01\x12\x04\x12\x02\x12\x00\x1a\aExample*\x1b/Channel/Application/Admins\x18\x01\x12\x8b\a\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18O\u007f\xf3\x80\v0\xea Օ{\xff\xaf\x0fm3_l\x83_\t85\xf3\x12G0E\x02!\x00\xebۭ\x19\x82\x17\xf1TS\xa4Yr.u\xb6@\xf3\x1da\xdfJ \x02\x05i\t\x13xK\xc8s\xb6\x02 \x19\xebW\xbb\x01\xcd\xdbq鲕\xff!\x1d\xb4H\x8dвI\xeb\x99(\v\xd3F?\x8a\x0f}\xca\xd9\x12F0D\x02 F\x1aF\xa9\x16\xd6\xc5Z\xa3\xd7j&>\x9a|{i\xd30\xb8\xe2ʯ\xf8\xa0\x1d\x16\xe1\xf8G]\x9e\x02 \x1b\xb9Lޓ\xfc\x94\x8f\x14\xf1'\x95\xacQ\x82.\xb7\x84\xaf\x17T\x8d4\x82@\x0f\xc6ko\xe7G>\x12G0E\x02!\x00\xdbA\x1b\xc6\xd6\x00\xc0띜\x87\xa2g\x0eIJG\xd2\xd2\xe17\"RD\x0e\xd7\xe4 \xf2\xac\xd3[\x02 &\x85\x0eU\xdf露#\xea\xec^\x01w\xf0(\xe4\x1e\x1aX\"r\x12\x01\xe5M\xe1\xdaV\x00O\xf3" 2:"0D\x02 \x01\xad@W\xa9_Z\x98\xd9ʀ\x88L\xfe\x90\xb4i1\xc3b\x98\x1aa\xa4\xa5:\x87C\x191%\xf5\x02 \x1aKF\xb1F\xae\x0fu\x80\x90\xb6\x83\xc7\n\x96\x96Qee\x9eX\xb2\xda\x1cSOq\xba\xfe\x8fR$" >metadata: -[630 10-12 08:31:57.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr, block=header:<6:71 0:"\x01" } 4:4335 7:/* unexpected EOF */ 10 { 10 { 1831:/* unknown wire type 7 */ 142695:/* unknown wire type 6 */ 15:/* unknown wire type 6 */ 27978 { 6:/* unknown wire type 6 */ 220158:1000744874119507296 11:/* unexpected EOF */ 4:107699043 4:5217 3346366563:11262002819717861805 253335:/* unknown wire type 7 */ 697:2055456806 1783:90 >data:<1:"\n\xc9\x06\n\x17\b\x04\x1a\x06\b\xfd\xd0\xfc\xce\x05\"\vtestchainid\x12\xad\x06\n\x90\x06\n\nOrdererMSP\x12\x81\x06-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\x12\x187\re>`\xe4\x80_\n\x86\xa6e\xf8\xf6=\x91\x16\xc1\x99\xb4v\x03\xb6X\x12\xe7_\n\x9b_\n\xcd\x06\n\x1b\b\x01\x1a\x06\b\xfd\xd0\xfc\xce\x05\"\x0fbusinesschannel\x12\xad\x06\n\x90\x06\n\nOrdererMSP\x12\x81\x06-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\x12\x18\xc5\x14\xf3d\xde\x11=\x8e(t\xc2n=\xc5\x1bnn\x8d\xa8~\xb0\xc5Y\xb8\x12\xc8X\n\xf3E\b\x01\x12\xeeE\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins*\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins\x12\xd0+\n\vApplication\x12\xc0+\b\x01\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins*\x06Admins\x12\xa2\x15\n\aOrg1MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins*\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\x12\xcf\x12\n\x84\x12\n\xdf\x06\n\x1b\b\x02\x1a\x06\b\xfc\xd0\xfc\xce\x05\"\x0fbusinesschannel\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\"\rk\xacv\xce\xcb\x06u\xb3\xb8؉!9\xc5\x11\xb5\xc2)E\xef\x04)\x12\x9f\v\n\x8e\x04\n\x0fbusinesschannel\x12O\x12)\n\vApplication\x12\x1a\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\x1a\xc7\x01\x12\xa0\x01\n\vApplication\x12\x90\x01\b\x01\x12\v\n\aOrg1MSP\x12\x00\x12\v\n\aOrg2MSP\x12\x00\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium*\xdf\x01\n\x0erscc_seed_data\x12\xcc\x01\x12\xc7\x01\x1aM\n\rQSCC.Example1\x12<\x12\x1d\n\x1b/Channel/Application/Admins\x1a\x1b/Channel/Application/Admins\x1a9\n\rQSCC.Example2\x12(\x12\t\n\aExample\x1a\x1b/Channel/Application/Admins\"\x1e\n\aExample\x12\x13\x12\b\b\x01\x12\x04\x12\x02\x12\x00\x1a\aExample*\x1b/Channel/Application/Admins\x18\x01\x12\x8b\a\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18O\u007f\xf3\x80\v0\xea Օ{\xff\xaf\x0fm3_l\x83_\t85\xf3\x12G0E\x02!\x00\xebۭ\x19\x82\x17\xf1TS\xa4Yr.u\xb6@\xf3\x1da\xdfJ \x02\x05i\t\x13xK\xc8s\xb6\x02 \x19\xebW\xbb\x01\xcd\xdbq鲕\xff!\x1d\xb4H\x8dвI\xeb\x99(\v\xd3F?\x8a\x0f}\xca\xd9\x12F0D\x02 F\x1aF\xa9\x16\xd6\xc5Z\xa3\xd7j&>\x9a|{i\xd30\xb8\xe2ʯ\xf8\xa0\x1d\x16\xe1\xf8G]\x9e\x02 \x1b\xb9Lޓ\xfc\x94\x8f\x14\xf1'\x95\xacQ\x82.\xb7\x84\xaf\x17T\x8d4\x82@\x0f\xc6ko\xe7G>\x12G0E\x02!\x00\xdbA\x1b\xc6\xd6\x00\xc0띜\x87\xa2g\x0eIJG\xd2\xd2\xe17\"RD\x0e\xd7\xe4 \xf2\xac\xd3[\x02 &\x85\x0eU\xdf露#\xea\xec^\x01w\xf0(\xe4\x1e\x1aX\"r\x12\x01\xe5M\xe1\xdaV\x00O\xf3" 2:"0D\x02 \x01\xad@W\xa9_Z\x98\xd9ʀ\x88L\xfe\x90\xb4i1\xc3b\x98\x1aa\xa4\xa5:\x87C\x191%\xf5\x02 \x1aKF\xb1F\xae\x0fu\x80\x90\xb6\x83\xc7\n\x96\x96Qee\x9eX\xb2\xda\x1cSOq\xba\xfe\x8fR$" >metadata: -[631 10-12 08:31:57.40 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka0:9092 (unregistered) -[632 10-12 08:31:57.41 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[633 10-12 08:31:57.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU Save new checkpoint info to the levelDB: latestFileChunkSuffixNum=[0], latestFileChunksize=[24213], isChainEmpty=[false], lastBlockNumber=[1] -[635 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x2a, 0xa5, 0x10, 0xaf, 0x97, 0xbb, 0x5d, 0xdf, 0x19, 0x9a, 0xf0, 0xc0, 0x72, 0x31, 0xce, 0x89, 0xde, 0x1f, 0x7f, 0x5e, 0x47, 0x69, 0xa4, 0x9a, 0x7b, 0x7, 0x33, 0x1b, 0xf9, 0x2a, 0x69, 0x3c} txOffsets= -txId= locPointer=offset=70, bytesLength=13187 -] -[636 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24213], isChainEmpty=[false], lastBlockNumber=[1] -[637 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -[634 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:39976 -[638 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39976 -[639 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #2 at kafka2:9092 -[63a 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #1 at kafka1:9092 -[63b 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #3 at kafka3:9092 -[63c 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #0 at kafka0:9092 -[63d 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupProducerForChannel.retry.try.func1.NewSyncProducer.NewAsyncProducer.NewClient -> DEBU Successfully initialized new client -[63e 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupProducerForChannel.retry.try -> DEBU [channel: businesschannel] Error is nil, breaking the retry loop -[63f 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] Producer set up successfully -[640 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage -> INFO [channel: businesschannel] About to post the CONNECT message... -[641 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: businesschannel] Attempting to post the CONNECT message... -[642 10-12 08:31:57.42 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [businesschannel] from broker kafka0:9092 -[643 10-12 08:31:57.59 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata found some partitions to be leaderless -[644 10-12 08:31:57.59 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1 -> DEBU client/metadata retrying after 250ms... (3 attempts remaining) -[645 10-12 08:31:57.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Rejecting deliver request for 172.18.0.11:39976 because of consenter error -[646 10-12 08:31:57.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:39976 -[647 10-12 08:31:57.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39976 -[648 10-12 08:31:57.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:39976: rpc error: code = Canceled desc = context canceled -[649 10-12 08:31:57.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[64a 10-12 08:31:57.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[64b 10-12 08:31:57.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:39980 -[64c 10-12 08:31:57.63 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39980 -[64d 10-12 08:31:57.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Rejecting deliver request for 172.18.0.11:39980 because of consenter error -[64e 10-12 08:31:57.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:39980 -[64f 10-12 08:31:57.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39980 -[650 10-12 08:31:57.84 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:39980: rpc error: code = Canceled desc = context canceled -[651 10-12 08:31:57.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[652 10-12 08:31:57.84 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.partitionMessage.Run.doWork.func1.func1.Partitions.RefreshMetadata.tryRefreshMetadata.func1.tryRefreshMetadata -> DEBU client/metadata fetching metadata for [businesschannel] from broker kafka0:9092 -[653 10-12 08:31:57.87 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[654 10-12 08:31:57.87 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:39982 -[655 10-12 08:31:57.87 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39982 -[656 10-12 08:31:57.88 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] dispatch)-fm.dispatch.Leader.cachedLeader.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[657 10-12 08:31:57.88 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/1 starting up -[658 10-12 08:31:57.88 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] run)-fm.run -> DEBU producer/broker/1 state change to [open] on businesschannel/0 -[659 10-12 08:31:57.88 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka1:9092 (registered as #1) -[65a 10-12 08:31:58.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Rejecting deliver request for 172.18.0.11:39982 because of consenter error -[65b 10-12 08:31:58.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:39982 -[65c 10-12 08:31:58.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39982 -[65d 10-12 08:31:58.07 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:39982: rpc error: code = Canceled desc = context canceled -[65e 10-12 08:31:58.07 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[65f 10-12 08:31:58.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[660 10-12 08:31:58.09 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:39986 -[661 10-12 08:31:58.09 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39986 -[662 10-12 08:31:58.25 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] sendConnectMessage.retry.try -> DEBU [channel: businesschannel] Error is nil, breaking the retry loop -[663 10-12 08:31:58.25 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] CONNECT message posted successfully -[664 10-12 08:31:58.25 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel -> INFO [channel: businesschannel] Setting up the parent consumer for this channel... -[665 10-12 08:31:58.25 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel.retry.try -> DEBU [channel: businesschannel] Connecting to the Kafka cluster -[666 10-12 08:31:58.25 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient -> DEBU Initializing new client -[667 10-12 08:31:58.25 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[668 10-12 08:31:58.25 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.any.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[669 10-12 08:31:58.25 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata -> DEBU client/metadata fetching metadata for all topics from broker kafka2:9092 -[66a 10-12 08:31:58.25 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka2:9092 (unregistered) -[66b 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #2 at kafka2:9092 -[66c 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #1 at kafka1:9092 -[66d 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #3 at kafka3:9092 -[66e 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient.RefreshMetadata.tryRefreshMetadata.updateMetadata.registerBroker -> DEBU client/brokers registered new broker #0 at kafka0:9092 -[66f 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupParentConsumerForChannel.retry.try.func1.NewConsumer.NewClient -> DEBU Successfully initialized new client -[670 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupParentConsumerForChannel.retry.try -> DEBU [channel: businesschannel] Error is nil, breaking the retry loop -[671 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] Parent consumer set up successfully -[672 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> DEBU [channel: businesschannel] chain.lastOffsetPersisted=-3 -[673 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel -> INFO [channel: businesschannel] Setting up the channel consumer for this channel (start offset: -2)... -[674 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel.retry.try -> DEBU [channel: businesschannel] Connecting to the Kafka cluster -[675 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] setupChannelConsumerForChannel.retry.try.func1.ConsumePartition.chooseStartingOffset.GetOffset.getOffset.Leader.cachedLeader.Open.Validate -> DEBU ClientID is the default of 'sarama', you should consider setting it to something application-specific. -[676 10-12 08:31:58.28 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] func1 -> DEBU Connected to broker at kafka1:9092 (registered as #1) -[677 10-12 08:31:58.29 UTC] [github.com/hyperledger/fabric/vendor/github.com/Shopify/sarama] subscriptionConsumer)-fm.subscriptionConsumer.updateSubscriptions -> DEBU consumer/broker/1 added subscription to businesschannel/0 -[678 10-12 08:31:58.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] setupChannelConsumerForChannel.retry.try -> DEBU [channel: businesschannel] Error is nil, breaking the retry loop -[679 10-12 08:31:58.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] Channel consumer set up successfully -[67a 10-12 08:31:58.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] -> INFO [channel: businesschannel] Start phase completed successfully -[67b 10-12 08:31:58.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 0. Inspecting type... -[67c 10-12 08:31:58.29 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processConnect -> DEBU [channel: businesschannel] It's a connect message - ignoring -[67d 10-12 08:31:58.29 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[67e 10-12 08:31:58.29 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 -[67f 10-12 08:31:58.29 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 == -[680 10-12 08:31:58.29 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 -[681 10-12 08:31:58.29 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 == -[682 10-12 08:31:58.29 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 -[683 10-12 08:31:58.30 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[684 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e698 gate 1507797118302288140 evaluation starts -[685 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e698 signed by 0 principal evaluation starts (used [false]) -[686 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e698 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[687 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e698 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[688 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e698 principal evaluation fails -[689 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e698 gate 1507797118302288140 evaluation fails -[68a 10-12 08:31:58.30 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 -[68b 10-12 08:31:58.30 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 -[68c 10-12 08:31:58.30 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 ] -[68d 10-12 08:31:58.30 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 -[68e 10-12 08:31:58.30 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 -[68f 10-12 08:31: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 == -[690 10-12 08:31: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 -[691 10-12 08:31:58.30 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 == -[692 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6a8 gate 1507797118307086875 evaluation starts -[693 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a8 signed by 0 principal evaluation starts (used [false]) -[694 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[695 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[696 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6a8 principal evaluation fails -[697 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6a8 gate 1507797118307086875 evaluation fails -[698 10-12 08:31:58.30 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 -[699 10-12 08:31:58.30 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 -[69a 10-12 08:31:58.30 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 == -[69b 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6b0 gate 1507797118307742941 evaluation starts -[69c 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b0 signed by 0 principal evaluation starts (used [false]) -[69d 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[69e 10-12 08:31:58.30 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 -[69f 10-12 08:31:58.30 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 -[6a0 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b0 principal matched by identity 0 -[6a1 10-12 08:31:58.30 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 e0 29 52 09 c0 eb fe d2 1c cd ab ea 99 d6 ab 50 |.)R............P| -00000010 4f 4b a1 9f 65 6c c0 bc cd 5d 40 70 78 16 20 a0 |OK..el...]@px. .| -[6a2 10-12 08:31:58.30 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 37 3d 03 08 d3 5c f5 78 06 2a 7a 91 |0D. 7=...\.x.*z.| -00000010 62 63 3e 07 49 c0 74 4a a2 4c a7 d7 1b 48 1a 48 |bc>.I.tJ.L...H.H| -00000020 7d 5b d1 33 02 20 23 ca 23 ae dd 8d 57 5e 56 2e |}[.3. #.#...W^V.| -00000030 3c 08 0c ca cc 3a c8 36 69 f9 8e 53 c0 6f 01 d4 |<....:.6i..S.o..| -00000040 4d 68 17 aa 0e f2 |Mh....| -[6a3 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e6b0 principal evaluation succeeds for identity 0 -[6a4 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e6b0 gate 1507797118307742941 evaluation succeeds -[6a5 10-12 08:31:58.30 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 -[6a6 10-12 08:31:58.30 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 -[6a7 10-12 08:31:58.30 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 -[6a8 10-12 08:31:58.30 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 -[6a9 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[6aa 10-12 08:31:58.30 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 -[6ab 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420167e20) start: > stop: > from 172.18.0.11:39986 -[6ac 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[6ad 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12308], Going to peek [8] bytes -[6ae 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12306], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[6af 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12306] read from file [0] -[6b0 10-12 08:31:58.30 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420167e20) for 172.18.0.11:39986 -[6b1 10-12 08:31:58.31 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.11:39986 for (0xc420167e20) -[6b2 10-12 08:31:58.31 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.11:39986 -[6b3 10-12 08:31:58.31 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39986 -[6b4 10-12 08:31:58.31 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:39986: rpc error: code = Canceled desc = context canceled -[6b5 10-12 08:31:58.31 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[6b6 10-12 08:32:02.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[6b7 10-12 08:32:02.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.11:39994 -[6b8 10-12 08:32:02.61 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.11:39994 -[6b9 10-12 08:32:02.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[6ba 10-12 08:32:02.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.11:39996 -[6bb 10-12 08:32:02.63 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.11:39996 -[6bc 10-12 08:32:02.63 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 -[6bd 10-12 08:32:02.63 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 == -[6be 10-12 08:32:02.64 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 -[6bf 10-12 08:32:02.64 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 == -[6c0 10-12 08:32:02.64 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 -[6c1 10-12 08:32:02.64 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 == -[6c2 10-12 08:32:02.64 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 0xc420168200 gate 1507797122644811549 evaluation starts -[6c3 10-12 08:32:02.64 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 0xc420168200 signed by 0 principal evaluation starts (used [false]) -[6c4 10-12 08:32:02.64 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 0xc420168200 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[6c5 10-12 08:32:02.64 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 0xc420168200 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[6c6 10-12 08:32:02.64 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 0xc420168200 principal evaluation fails -[6c7 10-12 08:32:02.64 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 0xc420168200 gate 1507797122644811549 evaluation fails -[6c8 10-12 08:32:02.64 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 -[6c9 10-12 08:32:02.64 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 -[6ca 10-12 08:32:02.64 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 == -[6cb 10-12 08:32:02.64 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 0xc420168208 gate 1507797122649483425 evaluation starts -[6cc 10-12 08:32:02.64 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 0xc420168208 signed by 0 principal evaluation starts (used [false]) -[6cd 10-12 08:32:02.65 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 0xc420168208 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[6ce 10-12 08:32:02.65 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 -[6cf 10-12 08:32:02.65 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 -[6d0 10-12 08:32:02.65 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 0xc420168208 principal matched by identity 0 -[6d1 10-12 08:32:02.65 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 aa 8c 06 fa 4d 4f b1 2e 51 ac e8 56 86 e9 e7 24 |....MO..Q..V...$| -00000010 51 fd 3b 9c b7 18 94 58 30 11 fe 60 e6 a0 ca 74 |Q.;....X0..`...t| -[6d2 10-12 08:32:02.65 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 a4 f4 1e 2a 3d 55 65 69 6b 8f 5a |0E.!....*=Ueik.Z| -00000010 c5 91 79 90 1b e4 67 5c f5 47 ac 5b b7 17 ea 83 |..y...g\.G.[....| -00000020 9c ad f8 93 6b 02 20 69 e2 09 9d 4c e1 ed 53 79 |....k. i...L..Sy| -00000030 08 43 3b 28 a5 e2 b0 7e f9 65 99 d5 f1 f3 62 0b |.C;(...~.e....b.| -00000040 9c a3 a2 f7 28 58 1d |....(X.| -[6d3 10-12 08:32:02.65 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 0xc420168208 principal evaluation succeeds for identity 0 -[6d4 10-12 08:32:02.65 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 0xc420168208 gate 1507797122649483425 evaluation succeeds -[6d5 10-12 08:32:02.65 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 -[6d6 10-12 08:32:02.65 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 -[6d7 10-12 08:32:02.65 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 -[6d8 10-12 08:32:02.65 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 -[6d9 10-12 08:32:02.65 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 -[6da 10-12 08:32:02.65 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 -[6db 10-12 08:32:02.65 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: [Groups] /Channel -[6dc 10-12 08:32:02.65 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: [Groups] /Channel/Application -[6dd 10-12 08:32:02.65 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: [Groups] /Channel/Application/Org1MSP -[6de 10-12 08:32:02.65 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: [Values] /Channel/Application/Org1MSP/MSP -[6df 10-12 08:32:02.65 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 -[6e0 10-12 08:32:02.65 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 -[6e1 10-12 08:32:02.65 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 -[6e2 10-12 08:32:02.65 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: [Groups] /Channel -[6e3 10-12 08:32:02.66 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: [Groups] /Channel/Application -[6e4 10-12 08:32:02.66 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: [Groups] /Channel/Application/Org1MSP -[6e5 10-12 08:32:02.67 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: [Values] /Channel/Application/Org1MSP/MSP -[6e6 10-12 08:32:02.67 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: [Values] /Channel/Application/Org1MSP/AnchorPeers -[6e7 10-12 08:32:02.67 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 -[6e8 10-12 08:32:02.67 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 -[6e9 10-12 08:32:02.67 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 -[6ea 10-12 08:32:02.67 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: [Groups] /Channel/Application/Org1MSP -[6eb 10-12 08:32:02.67 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 -[6ec 10-12 08:32:02.67 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] -[6ed 10-12 08:32:02.67 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 -[6ee 10-12 08:32:02.67 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 -[6ef 10-12 08:32:02.67 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 [] -[6f0 10-12 08:32:02.67 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 -[6f1 10-12 08:32:02.67 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 -[6f2 10-12 08:32:02.67 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] -[6f3 10-12 08:32:02.67 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 -[6f4 10-12 08:32:02.67 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 -[6f5 10-12 08:32:02.67 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 [] -[6f6 10-12 08:32:02.67 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 == -[6f7 10-12 08:32:02.67 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 0xc420168478 gate 1507797122679286204 evaluation starts -[6f8 10-12 08:32:02.67 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 0xc420168478 signed by 0 principal evaluation starts (used [false]) -[6f9 10-12 08:32:02.68 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 0xc420168478 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[6fa 10-12 08:32:02.68 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 -[6fb 10-12 08:32:02.68 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 0xc420168478 principal matched by identity 0 -[6fc 10-12 08:32:02.68 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 c2 52 58 3e 40 d1 b5 23 99 b6 a3 69 f6 a3 05 f2 |.RX>@..#...i....| -00000010 cf b5 aa 10 0d 3e 8e 14 c9 c3 41 ee 18 4a 19 ee |.....>....A..J..| -[6fd 10-12 08:32:02.68 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 aa 96 fb b1 e6 b5 3e cc d1 37 93 |0E.!.......>..7.| -00000010 af 5a 70 a8 b7 80 eb b4 a6 c1 f5 db 7d 18 41 22 |.Zp.........}.A"| -00000020 8d ac 6c fe f7 02 20 14 90 ea d4 21 5d 19 dd 4f |..l... ....!]..O| -00000030 da 59 f0 67 68 34 81 31 44 ea 00 b4 ae 26 de 3c |.Y.gh4.1D....&.<| -00000040 3c 87 fb 26 ff d6 7f |<..&...| -[6fe 10-12 08:32:02.68 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 0xc420168478 principal evaluation succeeds for identity 0 -[6ff 10-12 08:32:02.68 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 0xc420168478 gate 1507797122679286204 evaluation succeeds -[700 10-12 08:32:02.68 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 -[701 10-12 08:32:02.68 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 -[702 10-12 08:32:02.68 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: [Values] /Channel/Application/Org1MSP/AnchorPeers -[703 10-12 08:32:02.68 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" -[704 10-12 08:32:02.68 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" -[705 10-12 08:32:02.68 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" -[706 10-12 08:32:02.68 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" -[707 10-12 08:32:02.69 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" -[708 10-12 08:32:02.69 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" -[709 10-12 08:32:02.69 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" -[70a 10-12 08:32:02.69 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" -[70b 10-12 08:32:02.69 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" -[70c 10-12 08:32:02.69 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" -[70d 10-12 08:32:02.69 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 -[70e 10-12 08:32:02.69 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 -[70f 10-12 08:32:02.69 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 -[710 10-12 08:32:02.69 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" -[711 10-12 08:32:02.69 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" -[712 10-12 08:32:02.69 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" -[713 10-12 08:32:02.69 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" -[714 10-12 08:32:02.69 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" -[715 10-12 08:32:02.69 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" -[716 10-12 08:32:02.69 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 -[717 10-12 08:32:02.69 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 -[718 10-12 08:32:02.69 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 -[719 10-12 08:32:02.69 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 -[71a 10-12 08:32:02.69 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 -[71b 10-12 08:32:02.69 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 -[71c 10-12 08:32:02.69 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 -[71d 10-12 08:32:02.69 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 -[71e 10-12 08:32:02.69 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 -[71f 10-12 08:32:02.69 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 -[720 10-12 08:32:02.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 -[721 10-12 08:32:02.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 -[722 10-12 08:32:02.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 -[723 10-12 08:32:02.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 -[724 10-12 08:32:02.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 -[725 10-12 08:32:02.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 -[726 10-12 08:32:02.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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[727 10-12 08:32:02.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 -[728 10-12 08:32:02.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 -[729 10-12 08:32:02.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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[72a 10-12 08:32:02.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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[72b 10-12 08:32:02.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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[72c 10-12 08:32:02.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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[72d 10-12 08:32:02.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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[72e 10-12 08:32:02.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.setupCAs -> DEBU Load Admin Certs as msp.admins -[72f 10-12 08:32:02.71 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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[730 10-12 08:32:02.71 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[731 10-12 08:32:02.71 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.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[732 10-12 08:32:02.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 -[733 10-12 08:32:02.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 -[734 10-12 08:32:02.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 -[735 10-12 08:32:02.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 -[736 10-12 08:32:02.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 -[737 10-12 08:32:02.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 -[738 10-12 08:32:02.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: -[739 10-12 08:32:02.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 -[73a 10-12 08:32:02.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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[73b 10-12 08:32:02.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 -[73c 10-12 08:32:02.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 -[73d 10-12 08:32:02.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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[73e 10-12 08:32:02.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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[73f 10-12 08:32:02.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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[740 10-12 08:32:02.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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[741 10-12 08:32:02.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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[742 10-12 08:32:02.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.setupCAs -> DEBU Load Admin Certs as msp.admins -[743 10-12 08:32:02.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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[744 10-12 08:32:02.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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[745 10-12 08:32:02.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.Validate.Validate -> DEBU MSP Org1MSP validating identity -[746 10-12 08:32:02.72 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 -[747 10-12 08:32:02.72 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 -[748 10-12 08:32:02.72 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 -[749 10-12 08:32:02.72 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 -[74a 10-12 08:32:02.72 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 -[74b 10-12 08:32:02.72 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 -[74c 10-12 08:32:02.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.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[74d 10-12 08:32:02.72 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 -[74e 10-12 08:32:02.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 -> DEBU Setting up MSP instance Org2MSP -[74f 10-12 08:32:02.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.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[750 10-12 08:32:02.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.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[751 10-12 08:32:02.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.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[752 10-12 08:32:02.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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[753 10-12 08:32:02.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.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[754 10-12 08:32:02.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.setupCAs -> DEBU Load Admin Certs as msp.admins -[755 10-12 08:32:02.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.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[756 10-12 08:32:02.73 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.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[757 10-12 08:32:02.73 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.Validate.Validate -> DEBU MSP Org2MSP validating identity -[758 10-12 08:32:02.73 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) -[759 10-12 08:32:02.73 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 -[75a 10-12 08:32:02.73 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 -[75b 10-12 08:32:02.73 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 -[75c 10-12 08:32:02.73 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 -[75d 10-12 08:32:02.73 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 -[75e 10-12 08:32:02.73 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 -[75f 10-12 08:32:02.73 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 -[760 10-12 08:32:02.73 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 -[761 10-12 08:32:02.73 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 -[762 10-12 08:32:02.73 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 -[763 10-12 08:32:02.73 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 -[764 10-12 08:32:02.74 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 -[765 10-12 08:32:02.74 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 -[766 10-12 08:32:02.74 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 -[767 10-12 08:32:02.74 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 -[768 10-12 08:32:02.74 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 -[769 10-12 08:32:02.74 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 -[76a 10-12 08:32:02.74 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 -[76b 10-12 08:32:02.74 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 -[76c 10-12 08:32:02.74 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 -[76d 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[76e 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[76f 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[770 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[771 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[772 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[773 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[774 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[775 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[776 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[777 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[778 10-12 08:32:02.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[779 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[77a 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[77b 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[77c 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[77d 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[77e 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[77f 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[780 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[781 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[782 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[783 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[784 10-12 08:32:02.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[785 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[786 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[787 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[788 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[789 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[78a 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[78b 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[78c 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[78d 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[78e 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[78f 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[790 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[791 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[792 10-12 08:32:02.76 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[793 10-12 08:32:02.76 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' -[794 10-12 08:32:02.76 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' -[795 10-12 08:32:02.76 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] -[796 10-12 08:32:02.76 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 -[797 10-12 08:32:02.76 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 -[798 10-12 08:32:02.76 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 [] -[799 10-12 08:32:02.76 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 -[79a 10-12 08:32:02.76 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 -[79b 10-12 08:32:02.76 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' -[79c 10-12 08:32:02.76 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' -[79d 10-12 08:32:02.76 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' -[79e 10-12 08:32:02.77 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] -[79f 10-12 08:32:02.77 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 -[7a0 10-12 08:32:02.77 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 -[7a1 10-12 08:32:02.77 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 [] -[7a2 10-12 08:32:02.77 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 -[7a3 10-12 08:32:02.77 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' -[7a4 10-12 08:32:02.77 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 -[7a5 10-12 08:32:02.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[7a6 10-12 08:32:02.77 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 -[7a7 10-12 08:32:02.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[7a8 10-12 08:32:02.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A060882D1FCCE0522...7EF96599D5F1F3620B9CA3A2F728581D -[7a9 10-12 08:32:02.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.Sign.Sign.Sign -> DEBU Sign: digest: 4F47CCC3369FA35443735129FE838CBBB7B03C8D4526DE97A32894BA403BD6A7 -[7aa 10-12 08:32:02.77 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 == -[7ab 10-12 08:32:02.77 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 -[7ac 10-12 08:32:02.77 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 == -[7ad 10-12 08:32:02.77 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 -[7ae 10-12 08:32:02.77 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 == -[7af 10-12 08:32:02.77 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 -[7b0 10-12 08:32:02.77 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----- -MIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI -KoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC -Wo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA -MAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr -KJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC -xgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP ------END CERTIFICATE----- -[7b1 10-12 08:32:02.77 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 0xc42000f080 gate 1507797122777007846 evaluation starts -[7b2 10-12 08:32:02.77 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 0xc42000f080 signed by 0 principal evaluation starts (used [false]) -[7b3 10-12 08:32:02.77 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 0xc42000f080 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f6741774942416749524149523249436e69564f71416d6b2f76346a726f7a466377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a30444151634451674145465732366339464b4c38556a57303259706c487252527550575566436e7a44484158456a663768494a78635730384d430a576f357254537a3746685937776965684a4a39336376642b49646b77594e706347776f4265714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167325a714c67794e4a314f39632f7a56373162416753664737396a47720a4b4a38667273634332614d3743746b77436759494b6f5a497a6a3045417749445277417752414968414e693445306d326a416c77646b7376587a3047453157430a78674c384e6f306f35576d764f534c73332f6a4441683872496b4678716552484e69756c6d567a6c49394f4467745a37627143584c313377457779374f4a42500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7b4 10-12 08:32:02.77 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 0xc42000f080 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[7b5 10-12 08:32:02.77 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 0xc42000f080 principal evaluation fails -[7b6 10-12 08:32:02.77 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 0xc42000f080 gate 1507797122777007846 evaluation fails -[7b7 10-12 08:32:02.77 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 -[7b8 10-12 08:32:02.77 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 -[7b9 10-12 08:32:02.77 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 == -[7ba 10-12 08:32:02.78 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 0xc42000f090 gate 1507797122780001998 evaluation starts -[7bb 10-12 08:32:02.78 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 0xc42000f090 signed by 0 principal evaluation starts (used [false]) -[7bc 10-12 08:32:02.78 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 0xc42000f090 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f6741774942416749524149523249436e69564f71416d6b2f76346a726f7a466377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a30444151634451674145465732366339464b4c38556a57303259706c487252527550575566436e7a44484158456a663768494a78635730384d430a576f357254537a3746685937776965684a4a39336376642b49646b77594e706347776f4265714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167325a714c67794e4a314f39632f7a56373162416753664737396a47720a4b4a38667273634332614d3743746b77436759494b6f5a497a6a3045417749445277417752414968414e693445306d326a416c77646b7376587a3047453157430a78674c384e6f306f35576d764f534c73332f6a4441683872496b4678716552484e69756c6d567a6c49394f4467745a37627143584c313377457779374f4a42500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7bd 10-12 08:32:02.78 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 0xc42000f090 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[7be 10-12 08:32:02.78 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 0xc42000f090 principal evaluation fails -[7bf 10-12 08:32:02.78 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 0xc42000f090 gate 1507797122780001998 evaluation fails -[7c0 10-12 08:32:02.78 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 -[7c1 10-12 08:32:02.78 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 -[7c2 10-12 08:32:02.78 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 [ Org2MSP.Writers Org1MSP.Writers ] -[7c3 10-12 08:32:02.78 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 -[7c4 10-12 08:32:02.78 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 -[7c5 10-12 08:32:02.78 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 == -[7c6 10-12 08:32:02.78 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 -[7c7 10-12 08:32:02.78 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 == -[7c8 10-12 08:32:02.78 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 0xc42000f098 gate 1507797122783023220 evaluation starts -[7c9 10-12 08:32:02.78 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 0xc42000f098 signed by 0 principal evaluation starts (used [false]) -[7ca 10-12 08:32:02.78 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 0xc42000f098 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434444434341624f6741774942416749524149523249436e69564f71416d6b2f76346a726f7a466377436759494b6f5a497a6a3045417749776154454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784644415342674e5642416f54433256345957317762475575593239744d52637746515944565151444577356a5953356c654746740a6347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446614d466778437a414a42674e560a42415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d52597746415944565151484577315459573467526e4a68626d4e700a63324e764d527777476759445651514445784e76636d526c636d56794c6d56345957317762475575593239744d466b77457759484b6f5a497a6a3043415159490a4b6f5a497a6a30444151634451674145465732366339464b4c38556a57303259706c487252527550575566436e7a44484158456a663768494a78635730384d430a576f357254537a3746685937776965684a4a39336376642b49646b77594e706347776f4265714e4e4d45737744675944565230504151482f42415144416765410a4d41774741315564457745422f7751434d4141774b7759445652306a42435177496f4167325a714c67794e4a314f39632f7a56373162416753664737396a47720a4b4a38667273634332614d3743746b77436759494b6f5a497a6a3045417749445277417752414968414e693445306d326a416c77646b7376587a3047453157430a78674c384e6f306f35576d764f534c73332f6a4441683872496b4678716552484e69756c6d567a6c49394f4467745a37627143584c313377457779374f4a42500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7cb 10-12 08:32:02.78 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 -[7cc 10-12 08:32:02.78 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 -[7cd 10-12 08:32:02.78 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 0xc42000f098 principal matched by identity 0 -[7ce 10-12 08:32:02.78 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 4f 47 cc c3 36 9f a3 54 43 73 51 29 fe 83 8c bb |OG..6..TCsQ)....| -00000010 b7 b0 3c 8d 45 26 de 97 a3 28 94 ba 40 3b d6 a7 |..<.E&...(..@;..| -[7cf 10-12 08:32:02.78 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 35 99 e5 ae 81 e0 92 49 e5 b8 78 b9 |0D. 5......I..x.| -00000010 98 14 15 e4 fc 3b 57 44 72 af 3c bd e2 57 19 84 |.....;WDr.<..W..| -00000020 47 a1 d7 42 02 20 50 2c cf f4 dd 45 34 1a 7d 09 |G..B. P,...E4.}.| -00000030 7a 9d 02 66 98 58 30 52 76 87 4b a7 eb 7c cd 6f |z..f.X0Rv.K..|.o| -00000040 59 d3 67 91 8e b6 |Y.g...| -[7d0 10-12 08:32:02.78 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 0xc42000f098 principal evaluation succeeds for identity 0 -[7d1 10-12 08:32:02.78 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 0xc42000f098 gate 1507797122783023220 evaluation succeeds -[7d2 10-12 08:32:02.78 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 -[7d3 10-12 08:32:02.78 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 -[7d4 10-12 08:32:02.78 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 -[7d5 10-12 08:32:02.78 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 -[7d6 10-12 08:32:02.78 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 -[7d7 10-12 08:32:02.78 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 -[7d8 10-12 08:32:02.78 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Configure.Configure.enqueue -> DEBU [channel: businesschannel] Enqueueing envelope... -[7d9 10-12 08:32:02.81 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Configure.Configure.enqueue -> DEBU [channel: businesschannel] Envelope enqueued successfully -[7da 10-12 08:32:02.81 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.11:39996 -[7db 10-12 08:32:02.82 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 1. Inspecting type... -[7dc 10-12 08:32:02.82 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU Process a Regular msg start. -[7dd 10-12 08:32:02.82 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU [channel: businesschannel] Processing regular Kafka message of type CONFIG -[7de 10-12 08:32:02.82 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2 -> DEBU [channel: businesschannel] Received config message -[7df 10-12 08:32:02.82 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func2 -> DEBU [channel: businesschannel] Creating isolated block for config message -[7e0 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[7e1 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[7e3 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[7e2 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.11:39994: rpc error: code = Canceled desc = context canceled -[7e4 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[7e6 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[7e7 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.11:39996: rpc error: code = Canceled desc = context canceled -[7e9 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[7e8 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[7e5 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[7ea 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[7eb 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[7ec 10-12 08:32:02.83 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[7ed 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[7ee 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[7ef 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[7f0 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[7f1 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[7f2 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[7f3 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Values] /Channel/Application/Org1MSP/AnchorPeers -[7f4 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Groups] /Channel/Application/Org1MSP -[7f5 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[7f6 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[7f7 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[7f8 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[7f9 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[7fa 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[7fb 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[7fc 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -[7fd 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[7fe 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[7ff 10-12 08:32:02.84 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -[800 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[801 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000f6b8 gate 1507797122850429756 evaluation starts -[802 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000f6b8 signed by 0 principal evaluation starts (used [false]) -[803 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000f6b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[804 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[805 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000f6b8 principal matched by identity 0 -[806 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: digest = 00000000 c2 52 58 3e 40 d1 b5 23 99 b6 a3 69 f6 a3 05 f2 |.RX>@..#...i....| -00000010 cf b5 aa 10 0d 3e 8e 14 c9 c3 41 ee 18 4a 19 ee |.....>....A..J..| -[807 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 aa 96 fb b1 e6 b5 3e cc d1 37 93 |0E.!.......>..7.| -00000010 af 5a 70 a8 b7 80 eb b4 a6 c1 f5 db 7d 18 41 22 |.Zp.........}.A"| -00000020 8d ac 6c fe f7 02 20 14 90 ea d4 21 5d 19 dd 4f |..l... ....!]..O| -00000030 da 59 f0 67 68 34 81 31 44 ea 00 b4 ae 26 de 3c |.Y.gh4.1D....&.<| -00000040 3c 87 fb 26 ff d6 7f |<..&...| -[808 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000f6b8 principal evaluation succeeds for identity 0 -[809 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000f6b8 gate 1507797122850429756 evaluation succeeds -[80a 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[80b 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[80c 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[80d 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[80e 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[80f 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[810 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[811 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[812 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[813 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[814 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[815 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[816 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[817 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[818 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[819 10-12 08:32:02.85 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[81a 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[81b 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[81c 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[81d 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[81e 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[81f 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[820 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[821 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[822 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[823 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[824 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[825 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[826 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[827 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[828 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[829 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[82a 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[82b 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[82c 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[82d 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[82e 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[82f 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[830 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[831 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[832 10-12 08:32:02.86 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 76 106 67 67 65 100 87 103 65 119 73 66 65 103 73 81 69 84 114 51 83 72 117 104 52 79 66 53 120 66 68 66 115 115 103 114 72 84 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 112 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 85 77 66 73 71 65 49 85 69 67 104 77 76 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 70 122 65 86 66 103 78 86 66 65 77 84 68 109 78 104 76 109 86 52 89 87 49 119 10 98 71 85 117 89 50 57 116 77 66 52 88 68 84 69 51 77 84 65 119 78 106 69 120 78 68 103 119 77 86 111 88 68 84 73 51 77 84 65 119 78 68 69 120 78 68 103 119 77 86 111 119 97 84 69 76 77 65 107 71 65 49 85 69 10 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 99 109 70 117 89 50 108 122 10 89 50 56 120 70 68 65 83 66 103 78 86 66 65 111 84 67 50 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 82 99 119 70 81 89 68 86 81 81 68 69 119 53 106 89 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 10 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 69 56 71 48 108 109 71 114 77 116 65 73 68 90 120 78 90 69 121 86 66 50 111 120 83 100 102 10 103 101 83 78 68 83 111 97 43 81 52 83 76 86 117 51 51 106 50 57 85 88 103 56 71 56 56 86 100 120 113 122 51 43 74 119 113 48 111 70 119 55 86 70 68 113 85 118 120 67 106 99 81 99 113 108 72 56 75 106 88 122 66 100 10 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 10 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 78 109 97 105 52 77 106 83 100 84 118 88 80 56 49 101 57 87 119 73 69 110 120 117 47 89 120 113 121 105 102 72 54 55 72 65 116 109 106 79 119 114 90 77 65 111 71 10 67 67 113 71 83 77 52 57 66 65 77 67 65 48 99 65 77 69 81 67 73 69 56 52 55 102 76 74 112 102 106 119 81 79 100 53 111 112 47 100 83 48 114 78 66 107 109 87 122 113 69 48 72 109 85 86 56 120 117 107 97 47 54 103 10 65 105 65 66 53 116 43 83 75 107 88 75 73 43 119 50 88 43 47 117 107 74 68 117 74 109 82 55 49 74 109 107 86 122 52 87 78 56 107 110 109 74 47 113 82 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[833 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[834 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[835 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv -bTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf -geSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd -MA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB -Af8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG -CCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g -AiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw== ------END CERTIFICATE----- -[836 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[837 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[838 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[839 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS -pZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f -rscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw -D5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u ------END CERTIFICATE----- -[83a 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[83b 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[83c 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[83d 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[83e 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[83f 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[840 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[841 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[842 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[843 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[844 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[845 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[846 10-12 08:32:02.87 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 77 88 107 49 76 47 54 118 87 87 81 66 70 122 120 50 106 119 47 69 74 81 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 73 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 78 84 69 83 79 105 109 67 105 65 89 48 111 108 121 107 68 55 86 117 69 99 116 89 51 66 111 111 68 55 102 76 69 47 55 89 72 108 115 115 75 50 88 90 76 65 80 122 69 110 56 52 113 70 78 55 84 50 52 81 110 88 117 10 47 116 83 48 97 84 75 98 108 110 66 100 86 52 66 86 70 116 78 72 70 117 113 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 74 65 104 107 98 48 79 51 76 54 56 113 68 57 71 87 101 47 89 10 86 98 86 89 83 48 51 81 82 101 117 75 106 105 50 89 86 118 114 74 56 98 55 111 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 76 70 72 114 86 76 113 71 114 80 120 67 49 10 47 68 105 86 87 115 74 48 98 82 80 99 97 109 89 118 119 55 57 73 97 76 106 53 89 115 57 65 112 65 73 103 100 117 70 117 54 79 43 43 84 81 88 121 67 70 72 106 107 84 90 105 89 85 110 107 118 82 53 79 47 65 85 86 10 102 50 57 116 98 103 51 105 106 57 107 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[847 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[848 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[849 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu -/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y -VbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1 -/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV -f29tbg3ij9k= ------END CERTIFICATE----- -[84a 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[84b 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[84c 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[84d 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR -UCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo -P0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN -pfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE -KQ6LKDy3UcpaLL/1Ug== ------END CERTIFICATE----- -[84e 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org2MSP validating identity -[84f 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[850 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[851 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[852 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[853 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[854 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[855 10-12 08:32:02.88 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.NewBccspMsp -> DEBU Creating BCCSP-based MSP instance -[856 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp/cache] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[857 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[858 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Root Certs from Pem files: [[45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 82 68 67 67 65 101 113 103 65 119 73 66 65 103 73 82 65 76 71 107 102 73 69 56 89 52 83 74 117 77 89 119 105 86 88 103 82 79 65 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 99 120 77 68 65 50 77 84 69 48 79 68 65 120 87 104 99 78 77 106 99 120 77 68 65 48 77 84 69 48 79 68 65 120 10 87 106 66 122 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 10 65 120 77 84 89 50 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 10 66 65 73 65 51 43 103 100 120 65 111 47 68 55 97 106 71 100 120 87 109 122 81 77 87 78 77 99 118 70 78 56 66 87 84 88 53 100 75 119 90 52 51 90 71 107 88 113 51 90 122 89 99 54 98 43 100 75 65 85 98 75 75 89 10 86 105 75 43 73 120 77 66 74 43 51 100 72 48 72 104 112 72 115 85 79 101 109 106 88 122 66 100 77 65 52 71 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 66 112 106 65 80 66 103 78 86 72 83 85 69 67 68 65 71 10 66 103 82 86 72 83 85 65 77 65 56 71 65 49 85 100 69 119 69 66 47 119 81 70 77 65 77 66 65 102 56 119 75 81 89 68 86 82 48 79 66 67 73 69 73 80 53 57 67 101 87 121 52 118 101 120 121 119 113 86 52 113 103 81 10 52 111 107 78 116 87 43 53 80 98 77 112 87 106 65 78 100 78 57 50 113 102 78 55 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 116 82 51 48 82 73 83 69 116 57 103 55 99 10 71 80 107 121 102 47 118 87 110 87 86 107 90 110 50 72 97 76 114 106 87 79 67 56 108 70 71 72 65 65 73 103 73 52 121 115 85 122 70 73 107 102 100 99 99 50 74 51 97 70 65 103 115 76 53 48 101 75 110 73 119 50 54 85 10 68 121 79 105 48 104 121 100 97 47 56 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10]] -[859 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Get Intermediate Certs from Pem files: [] -[85a 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Root Certs as msp.rootCerts -[85b 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE -AxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA -BAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY -ViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG -BgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ -4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c -GPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U -DyOi0hyda/8= ------END CERTIFICATE----- -[85c 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Intermediate Certs as msp.intermediateCerts -[85d 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs -> DEBU Load Admin Certs as msp.admins -[85e 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[85f 10-12 08:32:02.89 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[860 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.Validate.Validate -> DEBU MSP Org1MSP validating identity -[861 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[862 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/msp] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[863 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[864 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[865 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[866 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[867 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[868 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[869 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[86a 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[86b 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[86c 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[86d 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[86e 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[86f 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[870 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[871 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[872 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[873 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[874 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[875 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[876 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[877 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[878 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[879 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[87a 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[87b 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[87c 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[87d 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[87e 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[87f 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[880 10-12 08:32:02.90 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[881 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[882 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[883 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[884 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[885 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[886 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[887 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[888 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[889 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[88a 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[88b 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[88c 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[88d 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[88e 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[88f 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[890 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[891 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[892 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[893 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[894 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[895 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[896 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[897 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[898 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[899 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[89a 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[89b 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/configtx] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[89c 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[89d 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[89e 10-12 08:32:02.91 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[89f 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[8a0 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[8a1 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[8a2 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[8a3 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[8a4 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[8a5 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[8a6 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[8a7 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[8a8 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[8a9 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[8aa 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[8ab 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/policies] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[8ac 10-12 08:32:02.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] processMessagesToBlocks.processRegular.func2.WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[8ad 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[8ae 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8af 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[8b0 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8b1 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...C8D158817A32BFA0AD69E9EB7862607A -[8b2 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: D34DCA7838562AB69F828727327D4267FFC67385410D5D28019E3BA8CB121CCE -[8b3 10-12 08:32:02.93 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 -[8b4 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[8b5 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8b6 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[8b7 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[8b8 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8b9 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...C8D158817A32BFA0AD69E9EB7862607A -[8ba 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 9784A93D6281DB7950EFBABE77DD2ACE52088D78B7A6BCA6A217B24EC6DEC90A -2017/10/12 08:32:02 proto: textWriter unindented too far -2017/10/12 08:32:02 proto: textWriter unindented too far -[8bb 10-12 08:32:02.93 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] commitBlock.Append.Append -> DEBU Add block to ledger: header:<6:71 0:"\x01" } 4:24 } 163019 { 46070:3610788783 15:9038544731876300778 1829:1139631976275884975 } 4:1453 456:/* unknown wire type 6 */ 105980:85 } 0:/* unknown wire type 7 */ 231726:/* unknown wire type 6 */ 23235715 { 1952:8713314544172187442 12:/* unexpected EOF */ 15:/* unexpected EOF */ >data:<1:"\n\xcd\x06\n\x1b\b\x01\x1a\x06\b\x82\xd1\xfc\xce\x05\"\x0fbusinesschannel\x12\xad\x06\n\x90\x06\n\nOrdererMSP\x12\x81\x06-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\x12\x18\xdaٹ\xbf\x18\x02\xb4|\xbf\x99\xd6\xd9xs\n\xab\xfc4\x90q\xd4a*S\x12\xfdV\n\xadF\b\x02\x12\xa8F\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins*\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x12\x8a,\n\vApplication\x12\xfa+\b\x01\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins*\x06Admins\x12\xdc\x15\n\aOrg1MSP\x12\xd0\x15\b\x01\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\x1a6\n\vAnchorPeers\x12'\x12\x1d\n\x1b\n\x16peer0.org1.example.com\x10\x8b7\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins*\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\x12\xca\x10\n\xfe\x0f\n\xdf\x06\n\x1b\b\x02\x1a\x06\b\x82\xd1\xfc\xce\x05\"\x0fbusinesschannel\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18_0\xe3TI\n\x06ٌ\x14B\x053\x1d*\xef\xa7?\xe6sT\xd7uj\x12\x99\t\n\x88\x02\n\x0fbusinesschannel\x12W\x12U\n\vApplication\x12F\b\x01\x12:\n\aOrg1MSP\x12/\x1a\a\n\x03MSP\x12\x00\"\n\n\x06Admins\x12\x00\"\v\n\aReaders\x12\x00\"\v\n\aWriters\x12\x00*\x06Admins\x1a\x9b\x01\x12\x98\x01\n\vApplication\x12\x88\x01\b\x01\x12|\n\aOrg1MSP\x12q\b\x01\x1a\a\n\x03MSP\x12\x00\x1a6\n\vAnchorPeers\x12'\x12\x1d\n\x1b\n\x16peer0.org1.example.com\x10\x8b7\x1a\x06Admins\"\v\n\aReaders\x12\x00\"\v\n\aWriters\x12\x00\"\n\n\x06Admins\x12\x00*\x06Admins*\x06Admins\x12\x8b\a\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18V\xd6 =)\x91\x1d<\xbd,t4\xac\xaf;\xf6{jlψΙ_\x12G0E\x02!\x00\xaa\x96\xfb\xb1\xe6\xb5>\xcc\xd17\x93\xafZp\xa8\xb7\x80봦\xc1\xf5\xdb}\x18A\"\x8d\xacl\xfe\xf7\x02 \x14\x90\xea\xd4!]\x19\xddO\xdaY\xf0gh4\x811D\xea\x00\xb4\xae&\xde<<\x87\xfb&\xff\xd6\u007f\x12G0E\x02!\x00\xa4\xf4\x1e*=Ueik\x8fZőy\x90\x1b\xe4g\\\xf5G\xac[\xb7\x17ꃜ\xad\xf8\x93k\x02 i\xe2\t\x9dL\xe1\xedSy\bC;(\xa5\xe2\xb0~\xf9e\x99\xd5\xf1\xf3b\v\x9c\xa3\xa2\xf7(X\x1d" 2:"0D\x02 5\x99宁\xe0\x92I\xe5\xb8x\xb9\x98\x14\x15\xe4\xfc;WDr\xaf<\xbd\xe2W\x19\x84G\xa1\xd7B\x02 P,\xcf\xf4\xddE4\x1a}\tz\x9d\x02f\x98X0Rv\x87K\xa7\xeb|\xcdoY\xd3g\x91\x8e\xb6" >metadata: -2017/10/12 08:32:02 proto: textWriter unindented too far -2017/10/12 08:32:02 proto: textWriter unindented too far -[8bc 10-12 08:32:02.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr, block=header:<6:71 0:"\x01" } 4:24 } 163019 { 46070:3610788783 15:9038544731876300778 1829:1139631976275884975 } 4:1453 456:/* unknown wire type 6 */ 105980:85 } 0:/* unknown wire type 7 */ 231726:/* unknown wire type 6 */ 23235715 { 1952:8713314544172187442 12:/* unexpected EOF */ 15:/* unexpected EOF */ >data:<1:"\n\xcd\x06\n\x1b\b\x01\x1a\x06\b\x82\xd1\xfc\xce\x05\"\x0fbusinesschannel\x12\xad\x06\n\x90\x06\n\nOrdererMSP\x12\x81\x06-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\x12\x18\xdaٹ\xbf\x18\x02\xb4|\xbf\x99\xd6\xd9xs\n\xab\xfc4\x90q\xd4a*S\x12\xfdV\n\xadF\b\x02\x12\xa8F\x12\xe6\x17\n\aOrderer\x12\xda\x17\x12\xde\x14\n\nOrdererOrg\x12\xcf\x14\x1a\xa4\x13\n\x03MSP\x12\x9c\x13\x12\x91\x13\x12\x8e\x13\n\nOrdererMSP\x12\xb2\x06-----BEGIN CERTIFICATE-----\nMIICLjCCAdWgAwIBAgIQETr3SHuh4OB5xBDBssgrHTAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowaTELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFtcGxlLmNv\nbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABE8G0lmGrMtAIDZxNZEyVB2oxSdf\ngeSNDSoa+Q4SLVu33j29UXg8G88Vdxqz3+Jwq0oFw7VFDqUvxCjcQcqlH8KjXzBd\nMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMB\nAf8wKQYDVR0OBCIEINmai4MjSdTvXP81e9WwIEnxu/YxqyifH67HAtmjOwrZMAoG\nCCqGSM49BAMCA0cAMEQCIE847fLJpfjwQOd5op/dS0rNBkmWzqE0HmUV8xuka/6g\nAiAB5t+SKkXKI+w2X+/ukJDuJmR71JmkVz4WN8knmJ/qRw==\n-----END CERTIFICATE-----\n\"\xfd\x05-----BEGIN CERTIFICATE-----\nMIICCTCCAbCgAwIBAgIQLpf6sJ/z9td/TdRwP9F1QjAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE3MTAwNjExNDgwMVoXDTI3MTAwNDExNDgwMVowVjELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI\nzj0DAQcDQgAEULET4HfTkmdFg9lcIlW7J1YooaEtcMVCu05c+IshkScigKNCHuIS\npZytuMYzpz6irbERED6hkR6kM2DwfPI5c6NNMEswDgYDVR0PAQH/BAQDAgeAMAwG\nA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGrKJ8f\nrscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIgbpgzNwIEwfJUQHDbAMcqMLRCpwfw\nD5CfsCTxtyaAHgICIC18FJ6nd9GcuvMXtPIjgcGNB4RDz05guUCaiSAj+s6u\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xba\x06-----BEGIN CERTIFICATE-----\nMIICNTCCAdygAwIBAgIRANUKAHD6cYa7VzVmXf2cWeUwCgYIKoZIzj0EAwIwbDEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRowGAYDVQQDExF0bHNjYS5l\neGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMGwxCzAJ\nBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJh\nbmNpc2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEaMBgGA1UEAxMRdGxzY2EuZXhh\nbXBsZS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATP420Fu/ZnYHsyXqf/\nvjmxhZ5G/lGHdnU/w959/zJv7F5JD7u8Xnpc/pluVo4RRi9BCbOnPAeRLctKFk4a\nODZso18wXTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMB\nAf8EBTADAQH/MCkGA1UdDgQiBCDnlBJXtmV6FnNw+cQgJUBMdndlz2L4Df0LduOR\nxYXjcjAKBggqhkjOPQQDAgNHADBEAiAFiWytTX0lirtc6e4UwqzWIIPoCCmRprAU\nli588+xzjAIgRFKQPYR++gwzfftAf9bCl5hA0pixXOsizX78Wpbo3IA=\n-----END CERTIFICATE-----\n\x1a\x06Admins\"3\n\aWriters\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins\"4\n\x06Admins\x12*\x12 \b\x01\x12\x1c\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x10\x12\x0e\n\nOrdererMSP\x10\x01\x1a\x06Admins\"3\n\aReaders\x12(\x12\x1e\b\x01\x12\x1a\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\x0e\x12\f\n\nOrdererMSP\x1a\x06Admins*\x06Admins\x1a\x1f\n\x13ChannelRestrictions\x12\b\x1a\x06Admins\x1aN\n\fKafkaBrokers\x12>\x124\n\vkafka0:9092\n\vkafka1:9092\n\vkafka2:9092\n\vkafka3:9092\x1a\x06Admins\x1a\"\n\rConsensusType\x12\x11\x12\a\n\x05kafka\x1a\x06Admins\x1a\"\n\tBatchSize\x12\x15\x12\v\b\n\x10\x80\x80\x801\x18\x80\x80 \x1a\x06Admins\x1a\x1e\n\fBatchTimeout\x12\x0e\x12\x04\n\x022s\x1a\x06Admins\"*\n\x0fBlockValidation\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins*\x06Admins\x12\x8a,\n\vApplication\x12\xfa+\b\x01\x12\xa2\x15\n\aOrg2MSP\x12\x96\x15\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg2MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRAMXk1L/6vWWQBFzx2jw/EJQwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBNTESOimCiAY0olykD7VuEctY3BooD7fLE/7YHlssK2XZLAPzEn84qFN7T24QnXu\n/tS0aTKblnBdV4BVFtNHFuqjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIJAhkb0O3L68qD9GWe/Y\nVbVYS03QReuKji2YVvrJ8b7oMAoGCCqGSM49BAMCA0gAMEUCIQCLFHrVLqGrPxC1\n/DiVWsJ0bRPcamYvw79IaLj5Ys9ApAIgduFu6O++TQXyCFHjkTZiYUnkvR5O/AUV\nf29tbg3ij9k=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQB83acKtKF8zNIgxJ5OA+zjAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE86MGKC5aWHAhoLL2lEp5zcNH0Cwe2/HR\nUCJAuaIS4mTP7ulm1UGTZboL0/jFgW7bFXzasuy9JSMdQMqgBRsUZaNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgkCGRvQ7cvryo\nP0ZZ79hVtVhLTdBF64qOLZhW+snxvugwCgYIKoZIzj0EAwIDSAAwRQIhAKbRNXPN\npfQy/qXG7g7qn/3rZXJJ7TaxSDJRKu02MUmjAiA1bovhTImXyiUlOe3DGxi3z9SE\nKQ6LKDy3UcpaLL/1Ug==\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSTCCAfCgAwIBAgIRANKgV7t6fHeDy9f9Zjvpd2MwCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzIuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMi5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABKKWAs0ovm184eyRlXVjyfI+kpkVYH5wuDE+f3vqCEVYMDqB2aDH7Tis\nB7XpfEmATli+DDd3rqW+3ExwCJETAyKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIEjueBhqqf8/\nzJ0NcGedHUASa8RSJAyk9Pnac+WW48IvMAoGCCqGSM49BAMCA0cAMEQCIBlGuf4y\nkQ6h07pupnKBmwto/9fKrQ1a6fUo9g01tIJ/AiB+JRvrOhZRA8ICaEj7W8Xdh+vx\n0cPDRU8bxq4CSG9W7w==\n-----END CERTIFICATE-----\n\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg2MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x1a\x06Admins*\x06Admins\x12\xdc\x15\n\aOrg1MSP\x12\xd0\x15\b\x01\x1a\xf4\x13\n\x03MSP\x12\xec\x13\x12\xe1\x13\x12\xde\x13\n\aOrg1MSP\x12\xcf\x06-----BEGIN CERTIFICATE-----\nMIICRDCCAeqgAwIBAgIRALGkfIE8Y4SJuMYwiVXgROAwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UE\nAxMTY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IA\nBAIA3+gdxAo/D7ajGdxWmzQMWNMcvFN8BWTX5dKwZ43ZGkXq3ZzYc6b+dKAUbKKY\nViK+IxMBJ+3dH0HhpHsUOemjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNVHSUECDAG\nBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIP59CeWy4vexywqV4qgQ\n4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQCtR30RISEt9g7c\nGPkyf/vWnWVkZn2HaLrjWOC8lFGHAAIgI4ysUzFIkfdcc2J3aFAgsL50eKnIw26U\nDyOi0hyda/8=\n-----END CERTIFICATE-----\n\"\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\nB\x0e\n\x04SHA2\x12\x06SHA256J\xd7\x06-----BEGIN CERTIFICATE-----\nMIICSjCCAfCgAwIBAgIRALk3TyqqRaIjdklu6VG5rVswCgYIKoZIzj0EAwIwdjEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHzAdBgNVBAMTFnRs\nc2NhLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0\nODAxWjB2MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UE\nBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEfMB0G\nA1UEAxMWdGxzY2Eub3JnMS5leGFtcGxlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49\nAwEHA0IABJzPVMbd1Z9ehu4SaNAynoia7li+QrcLljydyV+ZHd9ostW08oMUMQyr\n58gls7XgirVAzk/hI4xfuGcb9iol8QKjXzBdMA4GA1UdDwEB/wQEAwIBpjAPBgNV\nHSUECDAGBgRVHSUAMA8GA1UdEwEB/wQFMAMBAf8wKQYDVR0OBCIEIOulBxrettvV\nquQQU9yqaObqpFmc176rkq+KzJrNShyoMAoGCCqGSM49BAMCA0gAMEUCIQCFsPcU\n9UT2DSPdhjSySBqzQA6dma2OphLw+cYppabkCAIgXbay+biYgY8DaArOHBQ4a6YQ\noiYOMxdnAc7H4NQqdww=\n-----END CERTIFICATE-----\n\x1a\x06Admins\x1a6\n\vAnchorPeers\x12'\x12\x1d\n\x1b\n\x16peer0.org1.example.com\x10\x8b7\x1a\x06Admins\"0\n\aReaders\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"0\n\aWriters\x12%\x12\x1b\b\x01\x12\x17\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\v\x12\t\n\aOrg1MSP\x1a\x06Admins\"1\n\x06Admins\x12'\x12\x1d\b\x01\x12\x19\x12\b\x12\x06\b\x01\x12\x02\b\x00\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\x06Admins*\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins*\x06Admins\x1aI\n\x10OrdererAddresses\x125\x12\x1a\n\x18orderer.example.com:7050\x1a\x17/Channel/Orderer/Admins\x1a&\n\x10HashingAlgorithm\x12\x12\x12\b\n\x06SHA256\x1a\x06Admins\x1a-\n\x19BlockDataHashingStructure\x12\x10\x12\x06\b\xff\xff\xff\xff\x0f\x1a\x06Admins\x1a\"\n\nConsortium\x12\x14\x12\x12\n\x10SampleConsortium\"\"\n\x06Admins\x12\x18\x12\x0e\b\x03\x12\n\n\x06Admins\x10\x02\x1a\x06Admins\"\"\n\aReaders\x12\x17\x12\r\b\x03\x12\t\n\aReaders\x1a\x06Admins\"\"\n\aWriters\x12\x17\x12\r\b\x03\x12\t\n\aWriters\x1a\x06Admins\x12\xca\x10\n\xfe\x0f\n\xdf\x06\n\x1b\b\x02\x1a\x06\b\x82\xd1\xfc\xce\x05\"\x0fbusinesschannel\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18_0\xe3TI\n\x06ٌ\x14B\x053\x1d*\xef\xa7?\xe6sT\xd7uj\x12\x99\t\n\x88\x02\n\x0fbusinesschannel\x12W\x12U\n\vApplication\x12F\b\x01\x12:\n\aOrg1MSP\x12/\x1a\a\n\x03MSP\x12\x00\"\n\n\x06Admins\x12\x00\"\v\n\aReaders\x12\x00\"\v\n\aWriters\x12\x00*\x06Admins\x1a\x9b\x01\x12\x98\x01\n\vApplication\x12\x88\x01\b\x01\x12|\n\aOrg1MSP\x12q\b\x01\x1a\a\n\x03MSP\x12\x00\x1a6\n\vAnchorPeers\x12'\x12\x1d\n\x1b\n\x16peer0.org1.example.com\x10\x8b7\x1a\x06Admins\"\v\n\aReaders\x12\x00\"\v\n\aWriters\x12\x00\"\n\n\x06Admins\x12\x00*\x06Admins*\x06Admins\x12\x8b\a\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18V\xd6 =)\x91\x1d<\xbd,t4\xac\xaf;\xf6{jlψΙ_\x12G0E\x02!\x00\xaa\x96\xfb\xb1\xe6\xb5>\xcc\xd17\x93\xafZp\xa8\xb7\x80봦\xc1\xf5\xdb}\x18A\"\x8d\xacl\xfe\xf7\x02 \x14\x90\xea\xd4!]\x19\xddO\xdaY\xf0gh4\x811D\xea\x00\xb4\xae&\xde<<\x87\xfb&\xff\xd6\u007f\x12G0E\x02!\x00\xa4\xf4\x1e*=Ueik\x8fZőy\x90\x1b\xe4g\\\xf5G\xac[\xb7\x17ꃜ\xad\xf8\x93k\x02 i\xe2\t\x9dL\xe1\xedSy\bC;(\xa5\xe2\xb0~\xf9e\x99\xd5\xf1\xf3b\v\x9c\xa3\xa2\xf7(X\x1d" 2:"0D\x02 5\x99宁\xe0\x92I\xe5\xb8x\xb9\x98\x14\x15\xe4\xfc;WDr\xaf<\xbd\xe2W\x19\x84G\xa1\xd7B\x02 P,\xcf\xf4\xddE4\x1a}\tz\x9d\x02f\x98X0Rv\x87K\xa7\xeb|\xcdoY\xd3g\x91\x8e\xb6" >metadata: -[8bd 10-12 08:32:02.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU Save new checkpoint info to the levelDB: latestFileChunkSuffixNum=[0], latestFileChunksize=[26237], isChainEmpty=[false], lastBlockNumber=[1] -[8be 10-12 08:32:02.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x67, 0x17, 0xcb, 0x84, 0xfb, 0x7c, 0xd0, 0x17, 0xd5, 0x8a, 0xeb, 0x4b, 0x51, 0xc1, 0xcd, 0x8d, 0xaa, 0x49, 0x2a, 0x12, 0xab, 0x4a, 0x8a, 0xfd, 0x59, 0xcc, 0x41, 0xaa, 0xb2, 0x8a, 0x3a, 0x28} txOffsets= -txId= locPointer=offset=70, bytesLength=12061 -] -[8bf 10-12 08:32:02.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26237], isChainEmpty=[false], lastBlockNumber=[1] -[8c0 10-12 08:32:02.94 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -[8c1 10-12 08:32:05.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[8c2 10-12 08:32:05.52 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.10:33354 -[8c3 10-12 08:32:05.52 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.10:33354 -[8c4 10-12 08:32:05.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[8c5 10-12 08:32:05.52 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 -[8c6 10-12 08:32:05.52 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 == -[8c7 10-12 08:32:05.52 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 -[8c8 10-12 08:32:05.52 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 == -[8c9 10-12 08:32:05.52 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 -[8ca 10-12 08:32:05.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----- -MIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx -+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL -CpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E -PS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd -q9AUABhhA3EeNiD9 ------END CERTIFICATE----- -[8cb 10-12 08:32:05.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 0xc420168080 gate 1507797125532081515 evaluation starts -[8cc 10-12 08:32:05.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 0xc420168080 signed by 0 principal evaluation starts (used [false]) -[8cd 10-12 08:32:05.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 0xc420168080 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749514b6d726558544b4c38704e6a48745054616333596f44414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455755425a2f7a68353970306f74765a363737714b6437654779795631757558780a2b517445413247344f47366b7646314d4155433368786e43796150535665486b4e774c43764a42443756582b44484258614f487033714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672f6e304a35624c693937484c0a43705869714244696951323162376b3973796c614d4131303333617038337377436759494b6f5a497a6a30454177494452774177524149684149564275392f450a5053304f6a746d6f625566654b326b332b357863393854764852515a575041577a4c335a4168392b685139624733633358703257614870364767454e354866640a7139415541426868413345654e6944390a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8ce 10-12 08:32:05.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 0xc420168080 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[8cf 10-12 08:32:05.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 0xc420168080 principal evaluation fails -[8d0 10-12 08:32:05.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 0xc420168080 gate 1507797125532081515 evaluation fails -[8d1 10-12 08:32:05.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 -[8d2 10-12 08:32:05.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 -[8d3 10-12 08:32:05.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 ] -[8d4 10-12 08:32:05.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 -[8d5 10-12 08:32:05.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 -[8d6 10-12 08:32:05.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 == -[8d7 10-12 08:32:05.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 -[8d8 10-12 08:32:05.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/Org2MSP/Readers == -[8d9 10-12 08:32:05.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 0xc4201680b8 gate 1507797125535796761 evaluation starts -[8da 10-12 08:32:05.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 0xc4201680b8 signed by 0 principal evaluation starts (used [false]) -[8db 10-12 08:32:05.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 0xc4201680b8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749514b6d726558544b4c38704e6a48745054616333596f44414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455755425a2f7a68353970306f74765a363737714b6437654779795631757558780a2b517445413247344f47366b7646314d4155433368786e43796150535665486b4e774c43764a42443756582b44484258614f487033714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672f6e304a35624c693937484c0a43705869714244696951323162376b3973796c614d4131303333617038337377436759494b6f5a497a6a30454177494452774177524149684149564275392f450a5053304f6a746d6f625566654b326b332b357863393854764852515a575041577a4c335a4168392b685139624733633358703257614870364767454e354866640a7139415541426868413345654e6944390a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8dc 10-12 08:32:05.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 0xc4201680b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[8dd 10-12 08:32:05.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 0xc4201680b8 principal evaluation fails -[8de 10-12 08:32:05.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 0xc4201680b8 gate 1507797125535796761 evaluation fails -[8df 10-12 08:32:05.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/Application/Org2MSP/Readers -[8e0 10-12 08:32:05.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/Org2MSP/Readers -[8e1 10-12 08:32:05.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 == -[8e2 10-12 08:32:05.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 0xc4201680d8 gate 1507797125539196260 evaluation starts -[8e3 10-12 08:32:05.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 0xc4201680d8 signed by 0 principal evaluation starts (used [false]) -[8e4 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201680d8 processing identity 0 with bytes of 0a074f7267314d53501292062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434744434341622b6741774942416749514b6d726558544b4c38704e6a48745054616333596f44414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784e7a45774d4459784d5451344d444661467730794e7a45774d4451784d5451344d4446610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455755425a2f7a68353970306f74765a363737714b6437654779795631757558780a2b517445413247344f47366b7646314d4155433368786e43796150535665486b4e774c43764a42443756582b44484258614f487033714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41672f6e304a35624c693937484c0a43705869714244696951323162376b3973796c614d4131303333617038337377436759494b6f5a497a6a30454177494452774177524149684149564275392f450a5053304f6a746d6f625566654b326b332b357863393854764852515a575041577a4c335a4168392b685139624733633358703257614870364767454e354866640a7139415541426868413345654e6944390a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8e5 10-12 08:32:05.54 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 -[8e6 10-12 08:32:05.54 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 -[8e7 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201680d8 principal matched by identity 0 -[8e8 10-12 08:32:05.54 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 da 57 00 21 22 31 5e 37 80 bc 64 f2 b5 88 d8 b6 |.W.!"1^7..d.....| -00000010 98 fc 7d fc cb 27 40 07 ea cd 01 c2 05 d5 38 7d |..}..'@.......8}| -[8e9 10-12 08:32:05.54 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 b8 62 b4 06 ae d6 55 9e b0 b4 95 |0E.!..b....U....| -00000010 f7 25 d9 80 46 fe d5 4f 05 4f cf a1 fa 20 08 d0 |.%..F..O.O... ..| -00000020 af 28 ad 26 78 02 20 27 a7 80 28 1e 5f fd 17 8d |.(.&x. '..(._...| -00000030 29 22 54 7f 88 b7 8f 3d 82 e6 91 1d da f2 f0 bc |)"T....=........| -00000040 5e 96 47 39 a9 b3 27 |^.G9..'| -[8ea 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201680d8 principal evaluation succeeds for identity 0 -[8eb 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201680d8 gate 1507797125539196260 evaluation succeeds -[8ec 10-12 08:32:05.54 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 -[8ed 10-12 08:32:05.54 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 -[8ee 10-12 08:32:05.54 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 -[8ef 10-12 08:32:05.54 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 -[8f0 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[8f1 10-12 08:32:05.54 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 -[8f2 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4201cc680) start: > stop: > from 172.18.0.10:33354 -[8f3 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12308] -[8f4 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[13929], Going to peek [8] bytes -[8f5 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13927], placementInfo={fileNum=[0], startOffset=[12308], bytesOffset=[12310]} -[8f6 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13927] read from file [0] -[8f7 10-12 08:32:05.54 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201cc680) for 172.18.0.10:33354 -[8f8 10-12 08:32:13.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[8f9 10-12 08:32:13.05 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.11:40004 -[8fa 10-12 08:32:35.62 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.11:40004 with txid '973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6' of type ENDORSER_TRANSACTION -[8fb 10-12 08:32:35.62 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg -> DEBU env=payload:"\n\260\007\nl\010\003\032\013\010\215\321\374\316\005\020\244\335\323\035\"\017businesschannel*@973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6:\010\022\006\022\004lscc\022\277\006\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\306\321mjb\266Zk\251\357\225\033\303\032S\354Is#\342\322]\331\231\022\366\022\n\363\022\n\277\006\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\306\321mjb\266Zk\251\357\225\033\303\032S\354Is#\342\322]\331\231\022\256\014\n\214\001\n\211\001\n\206\001\010\001\022\006\022\004lscc\032z\n\006deploy\n\017businesschannel\n)\n'\010\001\022\013\022\004mycc\032\0031.0\032\026\n\004init\n\001a\n\003100\n\001b\n\003200\n(\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\013\022\t\n\007Org1MSP\032\013\022\t\n\007Org2MSP\n\004escc\n\004vscc\022\234\013\n\254\004\n j\356\214\021(\016\311\220\207\222\021J\205N\271\007\034\223\220T\252\367\224\267\307\214\357\253\360M\301r\022\207\004\n\225\002\022\364\001\n\004lscc\022\353\001\n\006\n\004mycc\032\340\001\n\004mycc\032\327\001\n\004mycc\022\0031.0\032\004escc\"\004vscc*(\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\013\022\t\n\007Org1MSP\032\013\022\t\n\007Org2MSP2D\n S\357t\247\217\031\216,a\360\256\323\252\213v\370\207K\332'\200\232\267\\q\254\216c\025l\rC\022 \007\037\024)\036\025+\262\256\210\347\375\371\345\247t\323\023ak\243\025J\204\366\240\324Z\027_c&: \366\005\203!\324f&w\215\014\371\264\261K\325\312\013W\273s`_;\307\024\313\261\246J\352\\\247B,\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\r\022\013\n\007Org1MSP\020\001\032\r\022\013\n\007Org2MSP\020\001\022\034\n\004mycc\022\024\032\010\n\001a\032\003100\032\010\n\001b\032\003200\032\335\001\010\310\001\032\327\001\n\004mycc\022\0031.0\032\004escc\"\004vscc*(\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\013\022\t\n\007Org1MSP\032\013\022\t\n\007Org2MSP2D\n S\357t\247\217\031\216,a\360\256\323\252\213v\370\207K\332'\200\232\267\\q\254\216c\025l\rC\022 \007\037\024)\036\025+\262\256\210\347\375\371\345\247t\323\023ak\243\025J\204\366\240\324Z\027_c&: \366\005\203!\324f&w\215\014\371\264\261K\325\312\013W\273s`_;\307\024\313\261\246J\352\\\247B,\022\014\022\n\010\001\022\002\010\000\022\002\010\001\032\r\022\013\n\007Org1MSP\020\001\032\r\022\013\n\007Org2MSP\020\001\"\r\022\004lscc\032\0051.1.0\022\352\006\n\236\006\n\007Org1MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\022G0E\002!\000\367\020n$\254\222\351\322\317\2144R\017H\224\244\372*\230\031#\256\326\241;\003\035\332`v\251d\002 i\330\314\2619\343\314\201,\302\221\376\272d\tUpR\033\207\204`\237\036\224\030\267y{\020\352\261" signature:"0D\002 )P\370\016\304\353\013\365\003\217*\206\314\267 \360\n\311\266^\ttp\371=\332Zw\225!\217\345\002 \013\034<\016\264X\024\213\333\322[\3320\345tbe[\233\306\365475']\335>n\370\226\245" -[8fc 10-12 08:32:35.62 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 == -[8fd 10-12 08:32:35.62 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 -[8fe 10-12 08:32:35.62 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 == -[8ff 10-12 08:32:35.62 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 -[900 10-12 08:32:35.62 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 == -[901 10-12 08:32:35.62 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 -[902 10-12 08:32:35.62 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----- -MIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2 -JJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex -ywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK -Ma5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil -RkD7CYqhMTbfmDd5+mc= ------END CERTIFICATE----- -[903 10-12 08:32:35.62 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 0xc42000ee08 gate 1507797155621624272 evaluation starts -[904 10-12 08:32:35.62 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 0xc42000ee08 signed by 0 principal evaluation starts (used [false]) -[905 10-12 08:32:35.62 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 0xc42000ee08 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[906 10-12 08:32:35.62 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 0xc42000ee08 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[907 10-12 08:32:35.62 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 0xc42000ee08 principal evaluation fails -[908 10-12 08:32:35.62 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 0xc42000ee08 gate 1507797155621624272 evaluation fails -[909 10-12 08:32:35.62 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 -[90a 10-12 08:32:35.62 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 -[90b 10-12 08:32:35.62 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 ] -[90c 10-12 08:32:35.62 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 -[90d 10-12 08:32:35.62 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 -[90e 10-12 08:32:35.62 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 == -[90f 10-12 08:32:35.62 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 -[910 10-12 08:32:35.62 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 == -[911 10-12 08:32:35.62 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 0xc42000ee18 gate 1507797155622269051 evaluation starts -[912 10-12 08:32:35.62 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 0xc42000ee18 signed by 0 principal evaluation starts (used [false]) -[913 10-12 08:32:35.62 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 0xc42000ee18 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[914 10-12 08:32:35.62 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 0xc42000ee18 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[915 10-12 08:32:35.62 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 0xc42000ee18 principal evaluation fails -[916 10-12 08:32:35.62 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 0xc42000ee18 gate 1507797155622269051 evaluation fails -[917 10-12 08:32:35.62 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 -[918 10-12 08:32:35.62 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 -[919 10-12 08:32:35.62 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 == -[91a 10-12 08:32:35.62 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 0xc42000ee20 gate 1507797155624742985 evaluation starts -[91b 10-12 08:32:35.62 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 0xc42000ee20 signed by 0 principal evaluation starts (used [false]) -[91c 10-12 08:32:35.62 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 0xc42000ee20 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[91d 10-12 08:32:35.62 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 -[91e 10-12 08:32:35.62 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 -[91f 10-12 08:32:35.62 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 0xc42000ee20 principal matched by identity 0 -[920 10-12 08:32:35.62 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 a7 8c 87 1c 2d db 24 47 07 13 a2 cc b5 fb eb 0e |....-.$G........| -00000010 7e 70 cc 52 f5 a6 23 39 0f 0f 70 7e 11 62 49 d8 |~p.R..#9..p~.bI.| -[921 10-12 08:32:35.62 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 29 50 f8 0e c4 eb 0b f5 03 8f 2a 86 |0D. )P........*.| -00000010 cc b7 20 f0 0a c9 b6 5e 09 74 70 f9 3d da 5a 77 |.. ....^.tp.=.Zw| -00000020 95 21 8f e5 02 20 0b 1c 3c 0e b4 58 14 8b db d2 |.!... ..<..X....| -00000030 5b da 30 e5 74 62 65 5b 9b c6 f5 34 37 35 27 5d |[.0.tbe[...475']| -00000040 dd 3e 6e f8 96 a5 |.>n...| -[922 10-12 08:32:35.62 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 0xc42000ee20 principal evaluation succeeds for identity 0 -[923 10-12 08:32:35.62 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 0xc42000ee20 gate 1507797155624742985 evaluation succeeds -[924 10-12 08:32:35.62 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 -[925 10-12 08:32:35.62 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 -[926 10-12 08:32:35.62 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 -[927 10-12 08:32:35.62 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 -[928 10-12 08:32:35.62 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 -[929 10-12 08:32:35.62 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 -[92a 10-12 08:32:35.62 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Order.Order.enqueue -> DEBU [channel: businesschannel] Enqueueing envelope... -[92b 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 2. Inspecting type... -[92c 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU Process a Regular msg start. -[92d 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU [channel: businesschannel] Processing regular Kafka message of type NORMAL -[92e 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU Receive KafkaMessageRegular_NORMAL -[92f 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] processMessagesToBlocks.processRegular.func1.Ordered -> DEBU Enqueuing message into batch -[930 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func1 -> DEBU [channel: businesschannel] Ordering results: items in batch = 0, pending = true -[931 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func1 -> DEBU [channel: businesschannel] Just began 2s batch timer -[932 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Order.Order.enqueue -> DEBU [channel: businesschannel] Envelope enqueued successfully -[933 10-12 08:32:35.65 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.11:40004 -[934 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.11:40004: rpc error: code = Canceled desc = context canceled -[935 10-12 08:32:35.65 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[936 10-12 08:32:37.65 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.sendTimeToCut -> DEBU [channel: businesschannel] Time-to-cut block 2 timer expired -[937 10-12 08:32:37.66 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 3. Inspecting type... -[938 10-12 08:32:37.66 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] It's a time-to-cut message for block 2 -[939 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] Nil'd the timer -[93a 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] Proper time-to-cut received, just cut block 2 -[93b 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[93c 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[93d 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[93e 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[93f 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...8C3ED72137FFB113B698C690B1817D1D -[940 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 4926C67AE95D8A326A47D6EA82EAAF45324299676961A176EE99518BBD329C2F -[941 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[942 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[943 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[944 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[945 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[946 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...8C3ED72137FFB113B698C690B1817D1D -[947 10-12 08:32:37.67 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 4A9326A2EF1910D13C4D2E42BAFD7BD7198E417F9355601348AD70EE2B92C6ED -2017/10/12 08:32:37 proto: textWriter unindented too far -2017/10/12 08:32:37 proto: textWriter unindented too far -2017/10/12 08:32:37 proto: textWriter unindented too far -[948 10-12 08:32:37.68 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] commitBlock.Append.Append -> DEBU Add block to ledger: header:<6:71 0:"\x02" } 4:103 2:/* unknown wire type 7 */ 32757833 { 378:159040853 10:12326961625948868033 9:/* unexpected EOF */ } 15225637:/* unexpected EOF */ } 4:4 } 12:/* unknown wire type 7 */ 6 { 0:/* unexpected EOF */ 5:/* unknown wire type 7 */ 5:2274789606 9:/* unknown wire type 7 */ 13:/* unknown wire type 7 */ 12:/* unknown wire type 6 */ } 538:/* unknown wire type 7 */ 6:/* unknown wire type 7 */ 39711:/* unknown wire type 7 */ 68725420208518:/* unknown wire type 6 */ 3:/* unexpected EOF */ >data:<1:"\n\xb0\a\nl\b\x03\x1a\v\b\x8d\xd1\xfc\xce\x05\x10\xa4\xdd\xd3\x1d\"\x0fbusinesschannel*@973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6:\b\x12\x06\x12\x04lscc\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xc6\xd1mjb\xb6Zk\xa9\xef\x95\x1b\xc3\x1aS\xecIs#\xe2\xd2]ٙ\x12\xf6\x12\n\xf3\x12\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xc6\xd1mjb\xb6Zk\xa9\xef\x95\x1b\xc3\x1aS\xecIs#\xe2\xd2]ٙ\x12\xae\f\n\x8c\x01\n\x89\x01\n\x86\x01\b\x01\x12\x06\x12\x04lscc\x1az\n\x06deploy\n\x0fbusinesschannel\n)\n'\b\x01\x12\v\x12\x04mycc\x1a\x031.0\x1a\x16\n\x04init\n\x01a\n\x03100\n\x01b\n\x03200\n(\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\v\x12\t\n\aOrg1MSP\x1a\v\x12\t\n\aOrg2MSP\n\x04escc\n\x04vscc\x12\x9c\v\n\xac\x04\n j\xee\x8c\x11(\x0eɐ\x87\x92\x11J\x85N\xb9\a\x1c\x93\x90T\xaa\xf7\x94\xb7nj\xef\xab\xf0M\xc1r\x12\x87\x04\n\x95\x02\x12\xf4\x01\n\x04lscc\x12\xeb\x01\n\x06\n\x04mycc\x1a\xe0\x01\n\x04mycc\x1a\xd7\x01\n\x04mycc\x12\x031.0\x1a\x04escc\"\x04vscc*(\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\v\x12\t\n\aOrg1MSP\x1a\v\x12\t\n\aOrg2MSP2D\n S\xeft\xa7\x8f\x19\x8e,a\xf0\xaeӪ\x8bv\xf8\x87K\xda'\x80\x9a\xb7\\q\xac\x8ec\x15l\rC\x12 \a\x1f\x14)\x1e\x15+\xb2\xae\x88\xe7\xfd\xf9\xe5\xa7t\xd3\x13ak\xa3\x15J\x84\xf6\xa0\xd4Z\x17_c&: \xf6\x05\x83!\xd4f&w\x8d\f\xf9\xb4\xb1K\xd5\xca\vW\xbbs`_;\xc7\x14˱\xa6J\xea\\\xa7B,\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x12\x1c\n\x04mycc\x12\x14\x1a\b\n\x01a\x1a\x03100\x1a\b\n\x01b\x1a\x03200\x1a\xdd\x01\b\xc8\x01\x1a\xd7\x01\n\x04mycc\x12\x031.0\x1a\x04escc\"\x04vscc*(\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\v\x12\t\n\aOrg1MSP\x1a\v\x12\t\n\aOrg2MSP2D\n S\xeft\xa7\x8f\x19\x8e,a\xf0\xaeӪ\x8bv\xf8\x87K\xda'\x80\x9a\xb7\\q\xac\x8ec\x15l\rC\x12 \a\x1f\x14)\x1e\x15+\xb2\xae\x88\xe7\xfd\xf9\xe5\xa7t\xd3\x13ak\xa3\x15J\x84\xf6\xa0\xd4Z\x17_c&: \xf6\x05\x83!\xd4f&w\x8d\f\xf9\xb4\xb1K\xd5\xca\vW\xbbs`_;\xc7\x14˱\xa6J\xea\\\xa7B,\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\r\x12\v\n\aOrg2MSP\x10\x01\"\r\x12\x04lscc\x1a\x051.1.0\x12\xea\x06\n\x9e\x06\n\aOrg1MSP\x12\x92\x06-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\x12G0E\x02!\x00\xf7\x10n$\xac\x92\xe9\xd2ό4R\x0fH\x94\xa4\xfa*\x98\x19#\xae֡;\x03\x1d\xda`v\xa9d\x02 i\xd8̱9\xe3́,\u0091\xfe\xbad\tUpR\x1b\x87\x84`\x9f\x1e\x94\x18\xb7y{\x10\xea\xb1" 2:"0D\x02 )P\xf8\x0e\xc4\xeb\v\xf5\x03\x8f*\x86̷ \xf0\nɶ^\ttp\xf9=\xdaZw\x95!\x8f\xe5\x02 \v\x1c<\x0e\xb4X\x14\x8b\xdb\xd2[\xda0\xe5tbe[\x9b\xc6\xf5475']\xdd>n\xf8\x96\xa5" >metadata: -2017/10/12 08:32:37 proto: textWriter unindented too far -2017/10/12 08:32:37 proto: textWriter unindented too far -2017/10/12 08:32:37 proto: textWriter unindented too far -[949 10-12 08:32:37.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr, block=header:<6:71 0:"\x02" } 4:103 2:/* unknown wire type 7 */ 32757833 { 378:159040853 10:12326961625948868033 9:/* unexpected EOF */ } 15225637:/* unexpected EOF */ } 4:4 } 12:/* unknown wire type 7 */ 6 { 0:/* unexpected EOF */ 5:/* unknown wire type 7 */ 5:2274789606 9:/* unknown wire type 7 */ 13:/* unknown wire type 7 */ 12:/* unknown wire type 6 */ } 538:/* unknown wire type 7 */ 6:/* unknown wire type 7 */ 39711:/* unknown wire type 7 */ 68725420208518:/* unknown wire type 6 */ 3:/* unexpected EOF */ >data:<1:"\n\xb0\a\nl\b\x03\x1a\v\b\x8d\xd1\xfc\xce\x05\x10\xa4\xdd\xd3\x1d\"\x0fbusinesschannel*@973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6:\b\x12\x06\x12\x04lscc\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xc6\xd1mjb\xb6Zk\xa9\xef\x95\x1b\xc3\x1aS\xecIs#\xe2\xd2]ٙ\x12\xf6\x12\n\xf3\x12\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xc6\xd1mjb\xb6Zk\xa9\xef\x95\x1b\xc3\x1aS\xecIs#\xe2\xd2]ٙ\x12\xae\f\n\x8c\x01\n\x89\x01\n\x86\x01\b\x01\x12\x06\x12\x04lscc\x1az\n\x06deploy\n\x0fbusinesschannel\n)\n'\b\x01\x12\v\x12\x04mycc\x1a\x031.0\x1a\x16\n\x04init\n\x01a\n\x03100\n\x01b\n\x03200\n(\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\v\x12\t\n\aOrg1MSP\x1a\v\x12\t\n\aOrg2MSP\n\x04escc\n\x04vscc\x12\x9c\v\n\xac\x04\n j\xee\x8c\x11(\x0eɐ\x87\x92\x11J\x85N\xb9\a\x1c\x93\x90T\xaa\xf7\x94\xb7nj\xef\xab\xf0M\xc1r\x12\x87\x04\n\x95\x02\x12\xf4\x01\n\x04lscc\x12\xeb\x01\n\x06\n\x04mycc\x1a\xe0\x01\n\x04mycc\x1a\xd7\x01\n\x04mycc\x12\x031.0\x1a\x04escc\"\x04vscc*(\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\v\x12\t\n\aOrg1MSP\x1a\v\x12\t\n\aOrg2MSP2D\n S\xeft\xa7\x8f\x19\x8e,a\xf0\xaeӪ\x8bv\xf8\x87K\xda'\x80\x9a\xb7\\q\xac\x8ec\x15l\rC\x12 \a\x1f\x14)\x1e\x15+\xb2\xae\x88\xe7\xfd\xf9\xe5\xa7t\xd3\x13ak\xa3\x15J\x84\xf6\xa0\xd4Z\x17_c&: \xf6\x05\x83!\xd4f&w\x8d\f\xf9\xb4\xb1K\xd5\xca\vW\xbbs`_;\xc7\x14˱\xa6J\xea\\\xa7B,\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\r\x12\v\n\aOrg2MSP\x10\x01\x12\x1c\n\x04mycc\x12\x14\x1a\b\n\x01a\x1a\x03100\x1a\b\n\x01b\x1a\x03200\x1a\xdd\x01\b\xc8\x01\x1a\xd7\x01\n\x04mycc\x12\x031.0\x1a\x04escc\"\x04vscc*(\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\v\x12\t\n\aOrg1MSP\x1a\v\x12\t\n\aOrg2MSP2D\n S\xeft\xa7\x8f\x19\x8e,a\xf0\xaeӪ\x8bv\xf8\x87K\xda'\x80\x9a\xb7\\q\xac\x8ec\x15l\rC\x12 \a\x1f\x14)\x1e\x15+\xb2\xae\x88\xe7\xfd\xf9\xe5\xa7t\xd3\x13ak\xa3\x15J\x84\xf6\xa0\xd4Z\x17_c&: \xf6\x05\x83!\xd4f&w\x8d\f\xf9\xb4\xb1K\xd5\xca\vW\xbbs`_;\xc7\x14˱\xa6J\xea\\\xa7B,\x12\f\x12\n\b\x01\x12\x02\b\x00\x12\x02\b\x01\x1a\r\x12\v\n\aOrg1MSP\x10\x01\x1a\r\x12\v\n\aOrg2MSP\x10\x01\"\r\x12\x04lscc\x1a\x051.1.0\x12\xea\x06\n\x9e\x06\n\aOrg1MSP\x12\x92\x06-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\x12G0E\x02!\x00\xf7\x10n$\xac\x92\xe9\xd2ό4R\x0fH\x94\xa4\xfa*\x98\x19#\xae֡;\x03\x1d\xda`v\xa9d\x02 i\xd8̱9\xe3́,\u0091\xfe\xbad\tUpR\x1b\x87\x84`\x9f\x1e\x94\x18\xb7y{\x10\xea\xb1" 2:"0D\x02 )P\xf8\x0e\xc4\xeb\v\xf5\x03\x8f*\x86̷ \xf0\nɶ^\ttp\xf9=\xdaZw\x95!\x8f\xe5\x02 \v\x1c<\x0e\xb4X\x14\x8b\xdb\xd2[\xda0\xe5tbe[\x9b\xc6\xf5475']\xdd>n\xf8\x96\xa5" >metadata: -[94a 10-12 08:32:37.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU Save new checkpoint info to the levelDB: latestFileChunkSuffixNum=[0], latestFileChunksize=[31553], isChainEmpty=[false], lastBlockNumber=[2] -[94b 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0xf0, 0x70, 0xb0, 0xc6, 0x3d, 0xaf, 0x2c, 0xea, 0xf7, 0xa, 0xfb, 0x10, 0xeb, 0x84, 0x5a, 0xb4, 0x8a, 0x16, 0x2, 0xf1, 0xe2, 0x91, 0xd, 0x46, 0x9, 0xc6, 0x17, 0x4, 0x81, 0xc6, 0x69, 0x59} txOffsets= -txId=973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 locPointer=offset=70, bytesLength=3449 -] -[94c 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[31553], isChainEmpty=[false], lastBlockNumber=[2] -[94d 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5316], Going to peek [8] bytes -[94e 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5314], placementInfo={fileNum=[0], startOffset=[26237], bytesOffset=[26239]} -[94f 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5314] read from file [0] -[950 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201cc680) for 172.18.0.10:33354 -[951 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -[952 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[953 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.11:40012 -[954 10-12 08:32:43.17 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.11:40012 with txid '3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0' of type ENDORSER_TRANSACTION -[955 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg -> DEBU env=payload:"\n\260\007\nl\010\003\032\013\010\253\321\374\316\005\020\353\202\324H\"\017businesschannel*@3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0:\010\022\006\022\004mycc\022\277\006\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\365`\234\"v2\365\212\302\037\251\331\245\331\366OoI\207\256\t\301\236\004\022\331\016\n\326\016\n\277\006\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\365`\234\"v2\365\212\302\037\251\331\245\331\366OoI\207\256\t\301\236\004\022\221\010\n\"\n \n\036\010\001\022\006\022\004mycc\032\022\n\006invoke\n\001a\n\001b\n\00210\022\352\007\n}\n \340\246\254\212f\242\206c\021z\257\352E\344\030\326c\203\275\023\254\023\3419\017\273e\2445kS\262\022Y\nE\022\024\n\004lscc\022\014\n\n\n\004mycc\022\002\010\002\022-\n\004mycc\022%\n\007\n\001a\022\002\010\002\n\007\n\001b\022\002\010\002\032\007\n\001a\032\00290\032\010\n\001b\032\003210\032\003\010\310\001\"\013\022\004mycc\032\0031.0\022\350\006\n\236\006\n\007Org1MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\022E0C\002\037%DQ\250.\202w\307\363\243wL\025\210\233\312\256\260\020F \311r\271\347\215r\006\313\320$\002 B\365\\a\266\353\t\327\276\337\342V\023\006\244\335\366\237\332d\270\340&\302\233c\027W\361\304\021\206" signature:"0E\002!\000\202v\257aQM\315x\362\300\213\010\024\025\201\261\270\234;\022\257\272\220\317g\267\017XX\345\327n\002 \022i\226\363-,\225\210\2056\325\315 DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[957 10-12 08:32:43.17 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 -[958 10-12 08:32:43.17 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 == -[959 10-12 08:32:43.17 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 -[95a 10-12 08:32:43.17 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 == -[95b 10-12 08:32:43.17 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 0xc42000ee78 gate 1507797163174392143 evaluation starts -[95c 10-12 08:32:43.17 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 0xc42000ee78 signed by 0 principal evaluation starts (used [false]) -[95d 10-12 08:32:43.17 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 0xc42000ee78 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[95e 10-12 08:32:43.17 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 0xc42000ee78 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[95f 10-12 08:32:43.17 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 0xc42000ee78 principal evaluation fails -[960 10-12 08:32:43.17 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 0xc42000ee78 gate 1507797163174392143 evaluation fails -[961 10-12 08:32:43.17 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 -[962 10-12 08:32:43.17 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 -[963 10-12 08:32:43.17 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 ] -[964 10-12 08:32:43.17 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 -[965 10-12 08:32:43.17 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 -[966 10-12 08:32:43.17 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 == -[967 10-12 08:32:43.17 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 -[968 10-12 08:32:43.17 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 == -[969 10-12 08:32:43.17 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 0xc42000ee80 gate 1507797163177561399 evaluation starts -[96a 10-12 08:32:43.17 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 0xc42000ee80 signed by 0 principal evaluation starts (used [false]) -[96b 10-12 08:32:43.17 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 0xc42000ee80 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[96c 10-12 08:32:43.17 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 0xc42000ee80 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[96d 10-12 08:32:43.17 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 0xc42000ee80 principal evaluation fails -[96e 10-12 08:32:43.17 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 0xc42000ee80 gate 1507797163177561399 evaluation fails -[96f 10-12 08:32:43.17 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 -[970 10-12 08:32:43.17 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 -[971 10-12 08:32:43.17 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 == -[972 10-12 08:32:43.17 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 0xc42000ee88 gate 1507797163179347702 evaluation starts -[973 10-12 08:32:43.17 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 0xc42000ee88 signed by 0 principal evaluation starts (used [false]) -[974 10-12 08:32:43.17 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 0xc42000ee88 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414c52504372366e65615770773845517747714e36586377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5463784d4441324d5445304f4441785768634e4d6a63784d4441304d5445304f4441780a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e6c4979667536444368566a507075332f6a584142567751316664654d78320a4a4a79443957786a465778504b5153366c527633424d6b514946367949634162555955792f5474757841776b673265634759574c6342696a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414950353943655779347665780a7977715634716751346f6b4e74572b3550624d70576a414e644e393271664e374d416f4743437147534d343942414d43413067414d455543495144775030754b0a4d6135514c6e4c4b4e4b427161387855714e4d78497135686b393143354d5955444e2f4550414967546d636e4e41334c45494c36586b684c52574c433168696c0a526b4437435971684d5462666d4464352b6d633d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[975 10-12 08:32:43.17 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 -[976 10-12 08:32:43.18 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 -[977 10-12 08:32:43.18 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 0xc42000ee88 principal matched by identity 0 -[978 10-12 08:32:43.18 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 df 38 f3 94 87 f4 4d d9 ec f6 15 c1 f5 ba b2 43 |.8....M........C| -00000010 e2 c0 48 7e 38 07 86 02 ee 14 48 87 b8 05 bf f9 |..H~8.....H.....| -[979 10-12 08:32:43.18 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 82 76 af 61 51 4d cd 78 f2 c0 8b |0E.!..v.aQM.x...| -00000010 08 14 15 81 b1 b8 9c 3b 12 af ba 90 cf 67 b7 0f |.......;.....g..| -00000020 58 58 e5 d7 6e 02 20 12 69 96 f3 2d 2c 95 88 85 |XX..n. .i..-,...| -00000030 36 d5 cd 3c 4e 07 15 e5 3d b9 7e 36 63 f1 88 ba |6.. DEBU 0xc42000ee88 principal evaluation succeeds for identity 0 -[97b 10-12 08:32:43.18 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 0xc42000ee88 gate 1507797163179347702 evaluation succeeds -[97c 10-12 08:32:43.18 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 -[97d 10-12 08:32:43.18 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 -[97e 10-12 08:32:43.18 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 -[97f 10-12 08:32:43.18 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 -[980 10-12 08:32:43.18 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 -[981 10-12 08:32:43.18 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 -[982 10-12 08:32:43.18 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Order.Order.enqueue -> DEBU [channel: businesschannel] Enqueueing envelope... -[983 10-12 08:32:43.20 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 4. Inspecting type... -[984 10-12 08:32:43.20 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU Process a Regular msg start. -[985 10-12 08:32:43.20 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU [channel: businesschannel] Processing regular Kafka message of type NORMAL -[986 10-12 08:32:43.20 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular -> DEBU Receive KafkaMessageRegular_NORMAL -[987 10-12 08:32:43.20 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] processMessagesToBlocks.processRegular.func1.Ordered -> DEBU Enqueuing message into batch -[988 10-12 08:32:43.20 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func1 -> DEBU [channel: businesschannel] Ordering results: items in batch = 0, pending = true -[989 10-12 08:32:43.20 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processRegular.func1 -> DEBU [channel: businesschannel] Just began 2s batch timer -[98a 10-12 08:32:43.20 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.Order.Order.enqueue -> DEBU [channel: businesschannel] Envelope enqueued successfully -[98b 10-12 08:32:43.20 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.11:40012 -[98c 10-12 08:32:43.21 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.11:40012: rpc error: code = Canceled desc = context canceled -[98d 10-12 08:32:43.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[98e 10-12 08:32:45.20 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.sendTimeToCut -> DEBU [channel: businesschannel] Time-to-cut block 3 timer expired -[98f 10-12 08:32:45.23 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks -> DEBU [channel: businesschannel] Successfully unmarshalled consumed message, offset is 5. Inspecting type... -[990 10-12 08:32:45.23 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] It's a time-to-cut message for block 3 -[991 10-12 08:32:45.23 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] Nil'd the timer -[992 10-12 08:32:45.23 UTC] [github.com/hyperledger/fabric/orderer/consensus/kafka] processMessagesToBlocks.processTimeToCut -> DEBU [channel: businesschannel] Proper time-to-cut received, just cut block 3 -[993 10-12 08:32:45.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[994 10-12 08:32:45.23 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[995 10-12 08:32:45.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[996 10-12 08:32:45.23 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[997 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...D5AD2E82B4BD89AE5A3E20C1614004DB -[998 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 04BA595052BF99B51BC90E484B4D39AC81276415849E628AFAA81D568234A44F -[999 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetLocalMSP -> DEBU Returning existing local MSP -[99a 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[99b 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[99c 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/msp/mgmt] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[99d 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[99e 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...D5AD2E82B4BD89AE5A3E20C1614004DB -[99f 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: A649CCB70D53F264F8B458F9C7890FAB71A8592913FFB05DA5BF6276BB292058 -2017/10/12 08:32:45 proto: textWriter unindented too far -2017/10/12 08:32:45 proto: textWriter unindented too far -[9a0 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/orderer/common/ledger/file] commitBlock.Append.Append -> DEBU Add block to ledger: header:<6:71 0:"\x03" } 4:14448 126054:5679 22397:/* unexpected EOF */ 184397 { } 0:/* unexpected EOF */ 8:/* unknown wire type 6 */ 1:313397950367930310 4:110 } 184791:/* unexpected EOF */ 467:/* unexpected EOF */ 79780:/* unexpected EOF */ 388093045568:/* unexpected EOF */ 4:12481 8:4 /* unexpected EOF */ >data:<1:"\n\xb0\a\nl\b\x03\x1a\v\b\xab\xd1\xfc\xce\x05\x10\xeb\x82\xd4H\"\x0fbusinesschannel*@3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0:\b\x12\x06\x12\x04mycc\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xf5`\x9c\"v2\xf5\x8a\xc2\x1f\xa9٥\xd9\xf6OoI\x87\xae\t\xc1\x9e\x04\x12\xd9\x0e\n\xd6\x0e\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xf5`\x9c\"v2\xf5\x8a\xc2\x1f\xa9٥\xd9\xf6OoI\x87\xae\t\xc1\x9e\x04\x12\x91\b\n\"\n \n\x1e\b\x01\x12\x06\x12\x04mycc\x1a\x12\n\x06invoke\n\x01a\n\x01b\n\x0210\x12\xea\a\n}\n ব\x8af\xa2\x86c\x11z\xaf\xeaE\xe4\x18\xd6c\x83\xbd\x13\xac\x13\xe19\x0f\xbbe\xa45kS\xb2\x12Y\nE\x12\x14\n\x04lscc\x12\f\n\n\n\x04mycc\x12\x02\b\x02\x12-\n\x04mycc\x12%\n\a\n\x01a\x12\x02\b\x02\n\a\n\x01b\x12\x02\b\x02\x1a\a\n\x01a\x1a\x0290\x1a\b\n\x01b\x1a\x03210\x1a\x03\b\xc8\x01\"\v\x12\x04mycc\x1a\x031.0\x12\xe8\x06\n\x9e\x06\n\aOrg1MSP\x12\x92\x06-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\x12E0C\x02\x1f%DQ\xa8.\x82w\xc7\xf3\xa3wL\x15\x88\x9bʮ\xb0\x10F \xc9r\xb9\xe7\x8dr\x06\xcb\xd0$\x02 B\xf5\\a\xb6\xeb\t\u05fe\xdf\xe2V\x13\x06\xa4\xdd\xf6\x9f\xdad\xb8\xe0&\u009bc\x17W\xf1\xc4\x11\x86" 2:"0E\x02!\x00\x82v\xafaQM\xcdx\xf2\xc0\x8b\b\x14\x15\x81\xb1\xb8\x9c;\x12\xaf\xba\x90\xcfg\xb7\x0fXX\xe5\xd7n\x02 \x12i\x96\xf3-,\x95\x88\x856\xd5\xcdmetadata:\002 \216\030\226\366\005\033}L=\346a\316\206\001\310\033ep\316\331\245G=4\304\214\017\017=\022\316" metadata:"\n\002\010\001\022\371\006\n\255\006\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\022\030\352\255\333\323\006\357\353\330\271\364+\210\272\004\026\"\004\270a\3513\033h\343\022G0E\002!\000\327h\271\033\333\335}\014\242GU|\177\312\364\341O\305\030\212\272 TfS\3006\376\324\242ua\002 \t\343\350\257\375\303\371x(\242\n\341W\363{su\266\345\267\350\021\363\014!\0208.\033\025\337\344" metadata:"" metadata:"\n\002\010\005" > -2017/10/12 08:32:45 proto: textWriter unindented too far -2017/10/12 08:32:45 proto: textWriter unindented too far -[9a1 10-12 08:32:45.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU addBlock by blockfileMgr, block=header:<6:71 0:"\x03" } 4:14448 126054:5679 22397:/* unexpected EOF */ 184397 { } 0:/* unexpected EOF */ 8:/* unknown wire type 6 */ 1:313397950367930310 4:110 } 184791:/* unexpected EOF */ 467:/* unexpected EOF */ 79780:/* unexpected EOF */ 388093045568:/* unexpected EOF */ 4:12481 8:4 /* unexpected EOF */ >data:<1:"\n\xb0\a\nl\b\x03\x1a\v\b\xab\xd1\xfc\xce\x05\x10\xeb\x82\xd4H\"\x0fbusinesschannel*@3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0:\b\x12\x06\x12\x04mycc\x12\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xf5`\x9c\"v2\xf5\x8a\xc2\x1f\xa9٥\xd9\xf6OoI\x87\xae\t\xc1\x9e\x04\x12\xd9\x0e\n\xd6\x0e\n\xbf\x06\n\xa2\x06\n\aOrg1MSP\x12\x96\x06-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\x12\x18\xf5`\x9c\"v2\xf5\x8a\xc2\x1f\xa9٥\xd9\xf6OoI\x87\xae\t\xc1\x9e\x04\x12\x91\b\n\"\n \n\x1e\b\x01\x12\x06\x12\x04mycc\x1a\x12\n\x06invoke\n\x01a\n\x01b\n\x0210\x12\xea\a\n}\n ব\x8af\xa2\x86c\x11z\xaf\xeaE\xe4\x18\xd6c\x83\xbd\x13\xac\x13\xe19\x0f\xbbe\xa45kS\xb2\x12Y\nE\x12\x14\n\x04lscc\x12\f\n\n\n\x04mycc\x12\x02\b\x02\x12-\n\x04mycc\x12%\n\a\n\x01a\x12\x02\b\x02\n\a\n\x01b\x12\x02\b\x02\x1a\a\n\x01a\x1a\x0290\x1a\b\n\x01b\x1a\x03210\x1a\x03\b\xc8\x01\"\v\x12\x04mycc\x1a\x031.0\x12\xe8\x06\n\x9e\x06\n\aOrg1MSP\x12\x92\x06-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx\n+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL\nCpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E\nPS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd\nq9AUABhhA3EeNiD9\n-----END CERTIFICATE-----\n\x12E0C\x02\x1f%DQ\xa8.\x82w\xc7\xf3\xa3wL\x15\x88\x9bʮ\xb0\x10F \xc9r\xb9\xe7\x8dr\x06\xcb\xd0$\x02 B\xf5\\a\xb6\xeb\t\u05fe\xdf\xe2V\x13\x06\xa4\xdd\xf6\x9f\xdad\xb8\xe0&\u009bc\x17W\xf1\xc4\x11\x86" 2:"0E\x02!\x00\x82v\xafaQM\xcdx\xf2\xc0\x8b\b\x14\x15\x81\xb1\xb8\x9c;\x12\xaf\xba\x90\xcfg\xb7\x0fXX\xe5\xd7n\x02 \x12i\x96\xf3-,\x95\x88\x856\xd5\xcdmetadata:\002 \216\030\226\366\005\033}L=\346a\316\206\001\310\033ep\316\331\245G=4\304\214\017\017=\022\316" metadata:"\n\002\010\001\022\371\006\n\255\006\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\022\030\352\255\333\323\006\357\353\330\271\364+\210\272\004\026\"\004\270a\3513\033h\343\022G0E\002!\000\327h\271\033\333\335}\014\242GU|\177\312\364\341O\305\030\212\272 TfS\3006\376\324\242ua\002 \t\343\350\257\375\303\371x(\242\n\341W\363{su\266\345\267\350\021\363\014!\0208.\033\025\337\344" metadata:"" metadata:"\n\002\010\005" > -[9a2 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock -> DEBU Save new checkpoint info to the levelDB: latestFileChunkSuffixNum=[0], latestFileChunksize=[36330], isChainEmpty=[false], lastBlockNumber=[3] -[9a3 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xe4, 0xc2, 0x6, 0xb7, 0xd0, 0xc6, 0x97, 0x3, 0xaa, 0x10, 0x35, 0xfd, 0x3d, 0x2b, 0x89, 0x98, 0x29, 0x89, 0x14, 0x69, 0x3c, 0xdc, 0x10, 0x6d, 0xb2, 0x69, 0x92, 0x6a, 0x4a, 0xdd, 0x4f, 0xdf} txOffsets= -txId=3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 locPointer=offset=70, bytesLength=2909 -] -[9a4 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[36330], isChainEmpty=[false], lastBlockNumber=[3] -[9a5 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -[9a6 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4777], Going to peek [8] bytes -[9a7 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4775], placementInfo={fileNum=[0], startOffset=[31553], bytesOffset=[31555]} -[9a8 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4775] read from file [0] -[9a9 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/orderer/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201cc680) for 172.18.0.10:33354 diff --git a/hyperledger_fabric/latest/kafka/logs/dev_peer.log b/hyperledger_fabric/latest/kafka/logs/dev_peer.log deleted file mode 100644 index 8f08f4d4..00000000 --- a/hyperledger_fabric/latest/kafka/logs/dev_peer.log +++ /dev/null @@ -1,1876 +0,0 @@ -[001 10-12 08:31:09.27 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: - Version: 1.1.0 - Go version: go1.9.1 - OS/Arch: linux/amd64 - Experimental features: - Chaincode: - Base Image Version: 0.4.2 - Base Docker Namespace: hyperledger - Base Docker Label: org.hyperledger.fabric - Docker Namespace: hyperledger - -[002 10-12 08:31:09.27 UTC] [github.com/hyperledger/fabric/core/aclmgmt] main.Execute.ExecuteC.execute.func1.serve.GetConfigTxProcessor -> INFO Initializing CONFIG processor -[003 10-12 08:31:09.27 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -[004 10-12 08:31:09.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -[005 10-12 08:31:09.28 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -[006 10-12 08:31:09.28 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -[007 10-12 08:31:09.29 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 -[008 10-12 08:31:09.32 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/] -[009 10-12 08:31:09.32 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 -[00a 10-12 08:31:09.32 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 -[00b 10-12 08:31:09.36 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/] -[00c 10-12 08:31:09.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/pvtdataStore/] does not exist -[00d 10-12 08:31:09.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/pvtdataStore/] exists -[00e 10-12 08:31:09.45 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 -[00f 10-12 08:31:09.45 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/] -[010 10-12 08:31:09.46 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 -[011 10-12 08:31:09.46 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 -[012 10-12 08:31:09.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 -[013 10-12 08:31:09.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/] -[014 10-12 08:31:09.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 -[015 10-12 08:31:09.53 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 -[016 10-12 08:31:09.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -[017 10-12 08:31:09.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger -[018 10-12 08:31:09.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery -[019 10-12 08:31:09.60 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -[01a 10-12 08:31:09.62 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -[01b 10-12 08:31:09.68 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -[01c 10-12 08:31:09.68 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -[01d 10-12 08:31:09.68 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -[01e 10-12 08:31:09.68 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -[01f 10-12 08:31:09.68 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -[020 10-12 08:31:09.68 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -[021 10-12 08:31:09.75 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport -> DEBU Chaincode startup timeout value set to 5m0s -[022 10-12 08:31:09.75 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 -[023 10-12 08:31:09.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Turn off keepalive(value 0) -[024 10-12 08:31:09.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport -> DEBU Setting execute timeout value to 30s -[025 10-12 08:31:09.76 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_LEVEL set to level info -[026 10-12 08:31:09.78 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.NewChaincodeSupport.getLogLevelFromViper -> DEBU CORE_CHAINCODE_SHIM set to level warning -[027 10-12 08:31:09.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 -[028 10-12 08:31:09.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 -[029 10-12 08:31:09.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCCs.registerSysCC -> INFO system chaincode escc(github.com/hyperledger/fabric/core/scc/escc) registered -[02a 10-12 08:31:09.86 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 -[02b 10-12 08:31:09.88 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 -[02c 10-12 08:31:09.88 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 -[02d 10-12 08:31:09.88 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 -[02e 10-12 08:31:09.89 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -[02f 10-12 08:31:09.90 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetLocalMSP -> DEBU Returning existing local MSP -[030 10-12 08:31:09.90 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.GetLocalSigningIdentityOrPanic.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[031 10-12 08:31:09.90 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] -[032 10-12 08:31:09.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.GetLocalDeserializer.GetLocalMSP -> DEBU Returning existing local MSP -[033 10-12 08:31:09.98 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.OrgByPeerIdentity.DeserializeIdentity -> INFO Obtaining identity -[034 10-12 08:31:09.98 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 cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx -+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL -CpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E -PS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd -q9AUABhhA3EeNiD9 ------END CERTIFICATE----- -[035 10-12 08:31:09.99 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 -[036 10-12 08:31:09.99 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -[037 10-12 08:31:09.99 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.Expiration.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx -+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL -CpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E -PS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd -q9AUABhhA3EeNiD9 ------END CERTIFICATE----- -[038 10-12 08:31:10.00 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 -[039 10-12 08:31:10.00 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 -[03a 10-12 08:31:10.01 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 -[03b 10-12 08:31:10.01 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -[03c 10-12 08:31:10.01 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.NewIdentityMapper.Put.ValidateIdentity.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx -+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL -CpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E -PS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd -q9AUABhhA3EeNiD9 ------END CERTIFICATE----- -[03d 10-12 08:31:10.02 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 -[03e 10-12 08:31:10.02 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 -[040 10-12 08:31:10.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[03f 10-12 08:31:10.06 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 [] [157 198 111 229 117 112 203 232 234 197 119 211 41 215 82 0 207 227 18 187 194 161 66 102 126 190 223 90 108 48 84 25] peer0.org1.example.com:7051 } incTime is 1507797070043892127 -[041 10-12 08:31:10.08 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 [] [157 198 111 229 117 112 203 232 234 197 119 211 41 215 82 0 207 227 18 187 194 161 66 102 126 190 223 90 108 48 84 25] peer0.org1.example.com:7051 } -[042 10-12 08:31:10.08 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 -[043 10-12 08:31:10.08 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.DeserializeIdentity -> INFO Obtaining identity -[044 10-12 08:31:10.09 UTC] [github.com/hyperledger/fabric/msp] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService.newCertStore.Put.Expiration.getValidatedIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx -+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL -CpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E -PS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd -q9AUABhhA3EeNiD9 ------END CERTIFICATE----- -[045 10-12 08:31:10.09 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 -[046 10-12 08:31:10.09 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 -[047 10-12 08:31:10.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[048 10-12 08:31:10.10 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 -[049 10-12 08:31:10.10 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 -[04a 10-12 08:31:10.10 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 cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQKmreXTKL8pNjHtPTac3YoDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWUBZ/zh59p0otvZ677qKd7eGyyV1uuXx -+QtEA2G4OG6kvF1MAUC3hxnCyaPSVeHkNwLCvJBD7VX+DHBXaOHp3qNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg/n0J5bLi97HL -CpXiqBDiiQ21b7k9sylaMA1033ap83swCgYIKoZIzj0EAwIDRwAwRAIhAIVBu9/E -PS0OjtmobUfeK2k3+5xc98TvHRQZWPAWzL3ZAh9+hQ9bG3c3Xp2WaHp6GgEN5Hfd -q9AUABhhA3EeNiD9 ------END CERTIFICATE----- -[04b 10-12 08:31:10.11 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 -[04c 10-12 08:31:10.11 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 -[04d 10-12 08:31:10.12 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 -[04e 10-12 08:31:10.12 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 -[04f 10-12 08:31:10.13 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: 1801AA01C3060A209DC66FE57570CBE8...455254494649434154452D2D2D2D2D0A -[050 10-12 08:31:10.14 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: D1FA39D2F082118D82DD5985C827900C9CB8FD01ADA3802ECC7AAD509EA9F1F1 -[052 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -[053 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -[051 10-12 08:31:10.16 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=a1601880-1362-4e53-a8ee-d1f5d83726f4,syscc=true,proposal=0x0,canname=cscc:1.1.0 -[054 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[057 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[058 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 18012AF0060A3F0A1B70656572302E6F...455254494649434154452D2D2D2D2D0A -[059 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.Sign.func1.Sign.Sign.Sign -> DEBU Sign: digest: A3E914AB83E0FE71F2D2713011A07D030B7BAD97EEDDCA9806360D5415BB1FCA -[05a 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/msp/mgmt] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetLocalMSP -> DEBU Returning existing local MSP -[05b 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[05c 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A1B70656572302E6F7267312E6578616D706C652E636F6D3A37303531 -[05d 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/msp] InitiateSync.createMembershipRequest.createAliveMessage.SignMessage.SignSecret.func1.Sign.Sign.Sign -> DEBU Sign: digest: A785FC0B61B5045A71C0FA6B50D12EB1E6F0CDB152C6F79E6575060F54022160 -[055 10-12 08:31:10.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -[056 10-12 08:31:10.16 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 -[05e 10-12 08:31:10.18 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Executable is chaincode -[05f 10-12 08:31:10.19 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[060 10-12 08:31:10.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.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_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}] -[061 10-12 08:31:10.20 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -[062 10-12 08:31:10.20 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.1.0(networkid:dev,peerid:peer0.org1.example.com) -[063 10-12 08:31:10.20 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 -[064 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: - CORE_CHAINCODE_ID_NAME=cscc:1.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_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} -[065 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.1.0) lock -[066 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.1.0) lock -[067 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for cscc-1.1.0 -[068 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.1.0) -[06a 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.1.0 -[069 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.1.0 -[06b 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[06d 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.1.0 -[06e 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[06c 10-12 08:31:10.21 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[06f 10-12 08:31:10.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[070 10-12 08:31:10.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[071 10-12 08:31:10.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[072 10-12 08:31:10.22 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 -[073 10-12 08:31:10.22 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 -[074 10-12 08:31:10.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[075 10-12 08:31:10.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[076 10-12 08:31:10.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[077 10-12 08:31:10.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[078 10-12 08:31:10.22 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 -[079 10-12 08:31:10.23 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 -[07a 10-12 08:31:10.23 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... -[07b 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1601880]Move state message READY -[07c 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a1601880]Fabric side Handling ChaincodeMessage of type: READY in state established -[07d 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [a1601880]Entered state ready -[07e 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:a1601880-1362-4e53-a8ee-d1f5d83726f4 -[07f 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1601880]sending state message READY -[080 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1601880]Received message READY from shim -[081 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1601880]Handling ChaincodeMessage of type: READY(state:established) -[082 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[083 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[084 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[085 10-12 08:31:10.23 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 -[086 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a1601880]Inside sendExecuteMessage. Message INIT -[087 10-12 08:31:10.23 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... -[088 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [a1601880]sendExecuteMsg trigger event INIT -[089 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1601880]Move state message INIT -[08a 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a1601880]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[08b 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[08c 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1601880]sending state message INIT -[08d 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1601880]Received message INIT from shim -[08e 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1601880]Handling ChaincodeMessage of type: INIT(state:ready) -[08f 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[090 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [a1601880]Received INIT, initializing chaincode -[091 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[092 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetLocalMSP -> DEBU Returning existing local MSP -[093 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1601880]Init get response status: 200 -[094 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1601880]Init succeeded. Sending COMPLETED -[095 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1601880]Move state message COMPLETED -[096 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1601880]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[097 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1601880]send state message COMPLETED -[098 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [a1601880]Received message COMPLETED from shim -[099 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a1601880]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[09a 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [a1601880-1362-4e53-a8ee-d1f5d83726f4]HandleMessage- COMPLETED. Notify -[09b 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:a1601880-1362-4e53-a8ee-d1f5d83726f4 -[09c 10-12 08:31:10.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[09d 10-12 08:31:10.23 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 -[09e 10-12 08:31:10.24 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=435a200e-40df-4fa3-b1d2-9ec6ab8540dc,syscc=true,proposal=0x0,canname=lscc:1.1.0 -[09f 10-12 08:31:10.24 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 -[0a0 10-12 08:31:10.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Executable is chaincode -[0a1 10-12 08:31:10.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0a2 10-12 08:31:10.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.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_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}] -[0a3 10-12 08:31:10.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -[0a4 10-12 08:31:10.25 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.1.0(networkid:dev,peerid:peer0.org1.example.com) -[0a5 10-12 08:31:10.25 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 -[0a6 10-12 08:31:10.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: - CORE_CHAINCODE_ID_NAME=lscc:1.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_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} -[0a7 10-12 08:31:10.25 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.1.0) lock -[0a8 10-12 08:31:10.25 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.1.0) lock -[0a9 10-12 08:31:10.25 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for lscc-1.1.0 -[0ab 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.1.0 -[0ac 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0aa 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.1.0) -[0ad 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.1.0 -[0ae 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0af 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.1.0 -[0b0 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0b1 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0b2 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0b3 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0b4 10-12 08:31:10.26 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 -[0b5 10-12 08:31:10.26 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 -[0b6 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0b7 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0b9 10-12 08:31:10.26 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 -[0ba 10-12 08:31:10.26 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 -[0bb 10-12 08:31:10.26 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... -[0bc 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [435a200e]Move state message READY -[0bd 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [435a200e]Fabric side Handling ChaincodeMessage of type: READY in state established -[0be 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [435a200e]Entered state ready -[0bf 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:435a200e-40df-4fa3-b1d2-9ec6ab8540dc -[0c0 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [435a200e]sending state message READY -[0b8 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0c2 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0c1 10-12 08:31:10.26 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[0c3 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [435a200e]Received message READY from shim -[0c5 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [435a200e]Handling ChaincodeMessage of type: READY(state:established) -[0c4 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[0c6 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[0c7 10-12 08:31:10.27 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 -[0c8 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [435a200e]Inside sendExecuteMessage. Message INIT -[0c9 10-12 08:31:10.27 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... -[0ca 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [435a200e]sendExecuteMsg trigger event INIT -[0cb 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [435a200e]Move state message INIT -[0cc 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [435a200e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[0cd 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[0ce 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [435a200e]sending state message INIT -[0cf 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [435a200e]Received message INIT from shim -[0d0 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [435a200e]Handling ChaincodeMessage of type: INIT(state:ready) -[0d1 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[0d2 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [435a200e]Received INIT, initializing chaincode -[0d3 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/msp/mgmt] Init.GetPolicyChecker.GetPolicyChecker.NewPolicyChecker.GetLocalMSP -> DEBU Returning existing local MSP -[0d4 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [435a200e]Init get response status: 200 -[0d5 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [435a200e]Init succeeded. Sending COMPLETED -[0d6 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [435a200e]Move state message COMPLETED -[0d7 10-12 08:31:10.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [435a200e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[0d8 10-12 08:31:10.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [435a200e]send state message COMPLETED -[0d9 10-12 08:31:10.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [435a200e]Received message COMPLETED from shim -[0da 10-12 08:31:10.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [435a200e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[0db 10-12 08:31:10.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [435a200e-40df-4fa3-b1d2-9ec6ab8540dc]HandleMessage- COMPLETED. Notify -[0dc 10-12 08:31:10.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:435a200e-40df-4fa3-b1d2-9ec6ab8540dc -[0dd 10-12 08:31:10.29 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[0de 10-12 08:31:10.29 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 -[0df 10-12 08:31:10.30 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=0766d964-e905-493a-9596-38ca49f41c53,syscc=true,proposal=0x0,canname=escc:1.1.0 -[0e0 10-12 08:31:10.30 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 -[0e1 10-12 08:31:10.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Executable is chaincode -[0e2 10-12 08:31:10.31 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[0e3 10-12 08:31:10.32 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.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_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}] -[0e4 10-12 08:31:10.32 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -[0e5 10-12 08:31:10.32 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.1.0(networkid:dev,peerid:peer0.org1.example.com) -[0e6 10-12 08:31:10.32 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 -[0e7 10-12 08:31:10.32 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: - CORE_CHAINCODE_ID_NAME=escc:1.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_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} -[0e8 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(escc-1.1.0) lock -[0e9 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (escc-1.1.0) lock -[0ea 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for escc-1.1.0 -[0ec 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for escc-1.1.0 -[0ed 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0ee 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for escc-1.1.0 -[0ef 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0f0 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=escc:1.1.0 -[0f1 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0f2 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[0f3 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[0f4 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[0f5 10-12 08:31:10.33 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 -[0f6 10-12 08:31:10.33 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 -[0f7 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[0f8 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[0f9 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[0fa 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[0eb 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(escc-1.1.0) -[0fb 10-12 08:31:10.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 escc:1.1.0 launch seq completed -[0fc 10-12 08:31:10.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 -[0fd 10-12 08:31:10.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... -[0fe 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0766d964]Move state message READY -[0ff 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0766d964]Fabric side Handling ChaincodeMessage of type: READY in state established -[100 10-12 08:31:10.33 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [0766d964]Entered state ready -[101 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:0766d964-e905-493a-9596-38ca49f41c53 -[102 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0766d964]sending state message READY -[103 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0766d964]Received message READY from shim -[104 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0766d964]Handling ChaincodeMessage of type: READY(state:established) -[105 10-12 08:31:10.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 -[106 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[107 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[108 10-12 08:31:10.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: escc:1.1.0 -[109 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0766d964]Inside sendExecuteMessage. Message INIT -[10a 10-12 08:31:10.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... -[10b 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [0766d964]sendExecuteMsg trigger event INIT -[10c 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0766d964]Move state message INIT -[10d 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0766d964]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[10e 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[10f 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0766d964]sending state message INIT -[110 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0766d964]Received message INIT from shim -[111 10-12 08:31:10.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0766d964]Handling ChaincodeMessage of type: INIT(state:ready) -[112 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[113 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [0766d964]Received INIT, initializing chaincode -[114 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[115 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0766d964]Init get response status: 200 -[116 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0766d964]Init succeeded. Sending COMPLETED -[117 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0766d964]Move state message COMPLETED -[118 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0766d964]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[119 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0766d964]send state message COMPLETED -[11a 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [0766d964]Received message COMPLETED from shim -[11b 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0766d964]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[11c 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [0766d964-e905-493a-9596-38ca49f41c53]HandleMessage- COMPLETED. Notify -[11d 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:0766d964-e905-493a-9596-38ca49f41c53 -[11e 10-12 08:31:10.35 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[11f 10-12 08:31:10.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 -[120 10-12 08:31:10.36 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=ab24acd3-a40a-41b1-95f0-a0f7844d0047,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[121 10-12 08:31:10.36 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 -[122 10-12 08:31:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Executable is chaincode -[123 10-12 08:31:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[124 10-12 08:31:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.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_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}] -[125 10-12 08:31:10.36 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -[126 10-12 08:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container: vscc:1.1.0(networkid:dev,peerid:peer0.org1.example.com) -[127 10-12 08:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[128 10-12 08:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: - 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_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} -[129 10-12 08:31:10.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(vscc-1.1.0) lock -[12a 10-12 08:31:10.37 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (vscc-1.1.0) lock -[12b 10-12 08:31:10.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for vscc-1.1.0 -[12c 10-12 08:31:10.37 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(vscc-1.1.0) -[12d 10-12 08:31:10.37 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for vscc-1.1.0 -[12e 10-12 08:31:10.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[12f 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for vscc-1.1.0 -[130 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[131 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=vscc:1.1.0 -[132 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[133 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[134 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[135 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[136 10-12 08:31:10.38 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 -[137 10-12 08:31:10.38 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 -[138 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[139 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[13b 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[13a 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode vscc:1.1.0 launch seq completed -[13d 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready -> DEBU sending READY -[13e 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[13c 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[13f 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab24acd3]Move state message READY -[140 10-12 08:31:10.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ab24acd3]Fabric side Handling ChaincodeMessage of type: READY in state established -[141 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [ab24acd3]Entered state ready -[142 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:ab24acd3-a40a-41b1-95f0-a0f7844d0047 -[143 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab24acd3]sending state message READY -[144 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[146 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[145 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab24acd3]Received message READY from shim -[147 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[148 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab24acd3]Handling ChaincodeMessage of type: READY(state:established) -[149 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[14a 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ab24acd3]Inside sendExecuteMessage. Message INIT -[14b 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[14c 10-12 08:31:10.39 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [ab24acd3]sendExecuteMsg trigger event INIT -[14d 10-12 08:31:10.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab24acd3]Move state message INIT -[14e 10-12 08:31:10.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ab24acd3]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[14f 10-12 08:31:10.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[150 10-12 08:31:10.40 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab24acd3]sending state message INIT -[151 10-12 08:31:10.40 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab24acd3]Received message INIT from shim -[152 10-12 08:31:10.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab24acd3]Handling ChaincodeMessage of type: INIT(state:ready) -[153 10-12 08:31:10.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[154 10-12 08:31:10.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [ab24acd3]Received INIT, initializing chaincode -[155 10-12 08:31:10.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab24acd3]Init get response status: 200 -[156 10-12 08:31:10.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab24acd3]Init succeeded. Sending COMPLETED -[157 10-12 08:31:10.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab24acd3]Move state message COMPLETED -[158 10-12 08:31:10.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab24acd3]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[159 10-12 08:31:10.41 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab24acd3]send state message COMPLETED -[15a 10-12 08:31:10.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [ab24acd3]Received message COMPLETED from shim -[15b 10-12 08:31:10.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ab24acd3]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[15c 10-12 08:31:10.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [ab24acd3-a40a-41b1-95f0-a0f7844d0047]HandleMessage- COMPLETED. Notify -[15d 10-12 08:31:10.42 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:ab24acd3-a40a-41b1-95f0-a0f7844d0047 -[15e 10-12 08:31:10.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[15f 10-12 08:31:10.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC -> INFO system chaincode vscc/(github.com/hyperledger/fabric/core/scc/vscc) deployed -[160 10-12 08:31:10.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=,chaincode=qscc,version=1.1.0,txid=5f91ee2e-66ae-483d-8500-f14c7928ea88,syscc=true,proposal=0x0,canname=qscc:1.1.0 -[161 10-12 08:31:10.42 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode qscc:1.1.0 is being launched -[162 10-12 08:31:10.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Executable is chaincode -[163 10-12 08:31:10.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[164 10-12 08:31:10.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.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_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}] -[165 10-12 08:31:10.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -[166 10-12 08:31:10.43 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.1.0(networkid:dev,peerid:peer0.org1.example.com) -[167 10-12 08:31:10.43 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 -[168 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch.launchAndWaitForRegister -> DEBU start container with env: - CORE_CHAINCODE_ID_NAME=qscc:1.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_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} -[169 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.1.0) lock -[16a 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.1.0) lock -[16b 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] do.do.Start.getInstance -> DEBU chaincode instance created for qscc-1.1.0 -[16c 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.1.0) -[16d 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.1.0 -[16f 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[170 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.1.0 -[171 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[16e 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.1.0 -[172 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[173 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[174 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU []Fabric side Handling ChaincodeMessage of type: REGISTER in state created -[175 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.beforeEventCallbacks.func1.beforeRegisterEvent -> DEBU Received REGISTER in state created -[176 10-12 08:31:10.44 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 -[177 10-12 08:31:10.44 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 -[178 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from shim -[17a 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU []Handling ChaincodeMessage of type: REGISTERED(state:created) -[17b 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func1.beforeRegistered -> DEBU Received REGISTERED, ready for invocations -[179 10-12 08:31:10.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func12.enterEstablishedState.notifyDuringStartup -> DEBU Notifying during startup -[17c 10-12 08:31:10.45 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 -[17d 10-12 08:31:10.45 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 -[17e 10-12 08:31:10.45 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... -[17f 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f91ee2e]Move state message READY -[180 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f91ee2e]Fabric side Handling ChaincodeMessage of type: READY in state established -[181 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState -> DEBU [5f91ee2e]Entered state ready -[182 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.Transition.func1.enterStateCallbacks.func13.enterReadyState.notify -> DEBU notifying Txid:5f91ee2e-66ae-483d-8500-f14c7928ea88 -[183 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f91ee2e]sending state message READY -[184 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f91ee2e]Received message READY from shim -[186 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f91ee2e]Handling ChaincodeMessage of type: READY(state:established) -[185 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU sending init completed -[187 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Launch -> DEBU LaunchChaincode complete -[188 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[189 10-12 08:31:10.45 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 -[18a 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5f91ee2e]Inside sendExecuteMessage. Message INIT -[18b 10-12 08:31:10.45 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... -[18c 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [5f91ee2e]sendExecuteMsg trigger event INIT -[18d 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f91ee2e]Move state message INIT -[18e 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f91ee2e]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[18f 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[190 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f91ee2e]sending state message INIT -[191 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f91ee2e]Received message INIT from shim -[192 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f91ee2e]Handling ChaincodeMessage of type: INIT(state:ready) -[193 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[194 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [5f91ee2e]Received INIT, initializing chaincode -[195 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[196 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f91ee2e]Init get response status: 200 -[197 10-12 08:31:10.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f91ee2e]Init succeeded. Sending COMPLETED -[198 10-12 08:31:10.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f91ee2e]Move state message COMPLETED -[199 10-12 08:31:10.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f91ee2e]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[19a 10-12 08:31:10.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f91ee2e]send state message COMPLETED -[19b 10-12 08:31:10.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [5f91ee2e]Received message COMPLETED from shim -[19c 10-12 08:31:10.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f91ee2e]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[19d 10-12 08:31:10.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [5f91ee2e-66ae-483d-8500-f14c7928ea88]HandleMessage- COMPLETED. Notify -[19e 10-12 08:31:10.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:5f91ee2e-66ae-483d-8500-f14c7928ea88 -[19f 10-12 08:31:10.46 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.initSysCCs.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[1a0 10-12 08:31:10.46 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 -[1a1 10-12 08:31:10.46 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 -[1a2 10-12 08:31:10.47 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.initSysCCs -> INFO Deployed system chaincodes -[1a3 10-12 08:31:10.47 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] -[1a4 10-12 08:31:10.48 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] -[1a5 10-12 08:31:10.48 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' -[1a6 10-12 08:31:10.48 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' -[1a7 10-12 08:31:10.48 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' -[1a8 10-12 08:31:10.48 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' -[1a9 10-12 08:31:10.48 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' -[1aa 10-12 08:31:10.48 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' -[1ab 10-12 08:31:10.48 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' -[1ac 10-12 08:31:10.48 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' -[1ad 10-12 08:31:10.48 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' -[1ae 10-12 08:31:10.48 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 10-12 08:31:10.49 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' -[1b0 10-12 08:31:10.53 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' -[1b1 10-12 08:31:10.54 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' -[1b2 10-12 08:31:10.56 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' -[1b3 10-12 08:31:10.56 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' -[1b4 10-12 08:31:10.56 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' -[1b5 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entry -[1b6 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b86e70 -[1b7 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[1b8 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[1b9 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 13d5f43dc1a518c5a713b7b0fec3073c91671c17db38113b8550f1429d2b16f9} -[1ba 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[1bb 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[1bc 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421a81ef0, header 0xc421b86f00 -[1bd 10-12 08:31:59.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:"cscc" -[1be 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 7e904cb94fc72456bcdd100ca77c2f8910de223939b63e9ffe1c4fda0cf34706 -[1bf 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 7e904cb94fc72456bcdd100ca77c2f8910de223939b63e9ffe1c4fda0cf34706 channel id: -[1c0 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 7e904cb94fc72456bcdd100ca77c2f8910de223939b63e9ffe1c4fda0cf34706 channel id: version: 1.1.0 -[1c1 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=cscc,version=1.1.0,txid=7e904cb94fc72456bcdd100ca77c2f8910de223939b63e9ffe1c4fda0cf34706,syscc=true,proposal=0xc421a81ef0,canname=cscc:1.1.0 -[1c2 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : cscc:1.1.0 -[1c3 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[1c4 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: cscc:1.1.0 -[1c5 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7e904cb9]Inside sendExecuteMessage. Message TRANSACTION -[1c6 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[1c7 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[1c8 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [7e904cb9]sendExecuteMsg trigger event TRANSACTION -[1c9 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7e904cb9]Move state message TRANSACTION -[1ca 10-12 08:31:59.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7e904cb9]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[1cb 10-12 08:31:59.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[1cc 10-12 08:31:59.46 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7e904cb9]sending state message TRANSACTION -[1cd 10-12 08:31:59.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7e904cb9]Received message TRANSACTION from shim -[1ce 10-12 08:31:59.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7e904cb9]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[1cf 10-12 08:31:59.46 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [7e904cb9]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[1d0 10-12 08:31:59.46 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -[1d1 10-12 08:31:59.46 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -[1d2 10-12 08:31:59.46 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 -[1d3 10-12 08:31:59.46 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/] -[1d4 10-12 08:31:59.46 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 -[1d5 10-12 08:31:59.46 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 -[1d6 10-12 08:31:59.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU Starting checkpoint=latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0] -[1d7 10-12 08:31:59.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncCPInfoFromFS -> DEBU status of file [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000]: exists=[false], size=[0] -[1d8 10-12 08:31:59.47 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]] -[1d9 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/ledgersData/chains/chains/businesschannel/blockfile_000000], startOffset=[0] -[1da 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Finished reading file number [0] -[1db 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.syncIndex.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [0] read from file [0] -[1dc 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -[1dd 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -[1de 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -[1df 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating block [0] -[1e0 10-12 08:31:59.47 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] -[1e1 10-12 08:31:59.47 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] -[1e2 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[1e3 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[1e4 10-12 08:31:59.47 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] -[1e5 10-12 08:31:59.47 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:%#v &{} -[1e6 10-12 08:31:59.47 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 -[1e7 10-12 08:31:59.47 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 = [] -[1e8 10-12 08:31:59.47 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 -[1e9 10-12 08:31:59.47 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 [] -[1ea 10-12 08:31:59.47 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 -[1eb 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[1ec 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[1ed 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[1ee 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -[1ef 10-12 08:31:59.47 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{0x18, 0xbc, 0x52, 0xdb, 0xcc, 0x4f, 0xb5, 0xbf, 0x16, 0xaf, 0x43, 0x38, 0xd7, 0x79, 0xea, 0x17, 0xf7, 0x9d, 0x8b, 0x5c, 0x6f, 0x7d, 0xa9, 0x72, 0xaf, 0xbb, 0x99, 0x90, 0x3e, 0xc9, 0xd0, 0xf} txOffsets= -txId= locPointer=offset=38, bytesLength=12265 -] -[1f0 10-12 08:31:59.47 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=12265] for tx ID: [] to index -[1f1 10-12 08:31:59.47 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=12265] for tx number:[0] ID: [] to blockNumTranNum index -[1f2 10-12 08:31:59.47 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=[12309], isChainEmpty=[false], lastBlockNumber=[0] -[1f3 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 0 -[1f4 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 0 -[1f5 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Created block [0] with 1 transaction(s) -[1f6 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -[1f7 10-12 08:31:59.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[1f8 10-12 08:31:59.47 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 -[1f9 10-12 08:31:59.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 -[1fa 10-12 08:31:59.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 -[1fb 10-12 08:31:59.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 -[1fc 10-12 08:31:59.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 -[1fd 10-12 08:31:59.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] -[1fe 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -[1ff 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[200 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[201 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[202 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[203 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[204 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[205 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[206 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[207 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[208 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[209 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[20a 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[20b 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[20c 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[20d 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[20e 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[20f 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[210 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[211 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[212 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[213 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[214 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[215 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[216 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[217 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[218 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[219 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[21a 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[21b 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[21c 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[21d 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[21e 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[21f 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[220 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[221 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[222 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[223 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[224 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[225 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[226 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[227 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[228 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[229 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[22a 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[22b 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[22c 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[22d 10-12 08:31:59.48 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[22e 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[22f 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[230 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[231 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[232 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[233 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[234 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[235 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[236 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[237 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[238 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[239 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[23a 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[23b 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[23c 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[23d 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[23e 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[23f 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[240 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[241 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleFromEnvelope.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[242 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[243 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[244 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[245 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[246 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[247 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[248 10-12 08:31:59.49 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[249 10-12 08:31:59.50 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[24a 10-12 08:31:59.50 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[24b 10-12 08:31:59.50 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[24c 10-12 08:31:59.50 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[24d 10-12 08:31:59.50 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -[24e 10-12 08:31:59.50 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 -[24f 10-12 08:31:59.50 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 -[250 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -[251 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func3 -> DEBU Deploying system CC, for chain -[252 10-12 08:31:59.51 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 -[253 10-12 08:31:59.51 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 = [b49f3ef1-104d-4af7-aa2e-cb92cbe909e3] -[254 10-12 08:31:59.51 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=b49f3ef1-104d-4af7-aa2e-cb92cbe909e3,syscc=true,proposal=0x0,canname=cscc:1.1.0 -[255 10-12 08:31:59.51 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 -[256 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[257 10-12 08:31:59.51 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 -[258 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b49f3ef1]Inside sendExecuteMessage. Message INIT -[259 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[25a 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [b49f3ef1]sendExecuteMsg trigger event INIT -[25b 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b49f3ef1]Move state message INIT -[25c 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b49f3ef1]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[25d 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[25e 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b49f3ef1]sending state message INIT -[25f 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f3ef1]Received message INIT from shim -[260 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b49f3ef1]Handling ChaincodeMessage of type: INIT(state:ready) -[261 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[262 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [b49f3ef1]Received INIT, initializing chaincode -[263 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[264 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f3ef1]Init get response status: 200 -[265 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f3ef1]Init succeeded. Sending COMPLETED -[266 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f3ef1]Move state message COMPLETED -[267 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b49f3ef1]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[268 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b49f3ef1]send state message COMPLETED -[269 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [b49f3ef1]Received message COMPLETED from shim -[26a 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b49f3ef1]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[26b 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [b49f3ef1-104d-4af7-aa2e-cb92cbe909e3]HandleMessage- COMPLETED. Notify -[26c 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:b49f3ef1-104d-4af7-aa2e-cb92cbe909e3 -[26d 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[26e 10-12 08:31:59.51 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 -[26f 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [b49f3ef1-104d-4af7-aa2e-cb92cbe909e3] -[270 10-12 08:31:59.51 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 -[271 10-12 08:31:59.51 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 = [6ab4d669-ac65-483f-8aad-91b3d7386b8a] -[272 10-12 08:31:59.51 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=6ab4d669-ac65-483f-8aad-91b3d7386b8a,syscc=true,proposal=0x0,canname=lscc:1.1.0 -[273 10-12 08:31:59.51 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 -[274 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[275 10-12 08:31:59.51 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 -[276 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6ab4d669]Inside sendExecuteMessage. Message INIT -[277 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[278 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [6ab4d669]sendExecuteMsg trigger event INIT -[279 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ab4d669]Move state message INIT -[27a 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ab4d669]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[27b 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[27c 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ab4d669]sending state message INIT -[27d 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ab4d669]Received message INIT from shim -[27e 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ab4d669]Handling ChaincodeMessage of type: INIT(state:ready) -[27f 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[280 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [6ab4d669]Received INIT, initializing chaincode -[281 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ab4d669]Init get response status: 200 -[282 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ab4d669]Init succeeded. Sending COMPLETED -[283 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ab4d669]Move state message COMPLETED -[284 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ab4d669]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[285 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ab4d669]send state message COMPLETED -[286 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [6ab4d669]Received message COMPLETED from shim -[287 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ab4d669]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[288 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [6ab4d669-ac65-483f-8aad-91b3d7386b8a]HandleMessage- COMPLETED. Notify -[289 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:6ab4d669-ac65-483f-8aad-91b3d7386b8a -[28a 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[28b 10-12 08:31:59.51 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 -[28c 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [6ab4d669-ac65-483f-8aad-91b3d7386b8a] -[28d 10-12 08:31:59.51 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 -[28e 10-12 08:31:59.51 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 = [8337fcb4-9857-42ed-947e-6c92661443cb] -[28f 10-12 08:31:59.51 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=8337fcb4-9857-42ed-947e-6c92661443cb,syscc=true,proposal=0x0,canname=escc:1.1.0 -[290 10-12 08:31:59.51 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 -[291 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[292 10-12 08:31:59.51 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 -[293 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8337fcb4]Inside sendExecuteMessage. Message INIT -[294 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[295 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [8337fcb4]sendExecuteMsg trigger event INIT -[296 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8337fcb4]Move state message INIT -[297 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8337fcb4]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[298 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[299 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8337fcb4]sending state message INIT -[29a 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8337fcb4]Received message INIT from shim -[29b 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8337fcb4]Handling ChaincodeMessage of type: INIT(state:ready) -[29c 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[29d 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [8337fcb4]Received INIT, initializing chaincode -[29e 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/scc/escc] Init -> INFO Successfully initialized ESCC -[29f 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8337fcb4]Init get response status: 200 -[2a0 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8337fcb4]Init succeeded. Sending COMPLETED -[2a1 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8337fcb4]Move state message COMPLETED -[2a2 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8337fcb4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2a3 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8337fcb4]send state message COMPLETED -[2a4 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [8337fcb4]Received message COMPLETED from shim -[2a5 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8337fcb4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2a6 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [8337fcb4-9857-42ed-947e-6c92661443cb]HandleMessage- COMPLETED. Notify -[2a7 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:8337fcb4-9857-42ed-947e-6c92661443cb -[2a8 10-12 08:31:59.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2a9 10-12 08:31:59.52 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 -[2aa 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [8337fcb4-9857-42ed-947e-6c92661443cb] -[2ab 10-12 08:31:59.52 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 10-12 08:31:59.52 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 = [acf64d53-d825-4d23-8e48-2f7731094717] -[2ad 10-12 08:31:59.52 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=acf64d53-d825-4d23-8e48-2f7731094717,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[2ae 10-12 08:31:59.52 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 -[2af 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2b0 10-12 08:31:59.52 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 -[2b1 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [acf64d53]Inside sendExecuteMessage. Message INIT -[2b2 10-12 08:31:59.52 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 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [acf64d53]sendExecuteMsg trigger event INIT -[2b4 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [acf64d53]Move state message INIT -[2b5 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [acf64d53]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2b6 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2b7 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [acf64d53]sending state message INIT -[2b8 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acf64d53]Received message INIT from shim -[2b9 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [acf64d53]Handling ChaincodeMessage of type: INIT(state:ready) -[2ba 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2bb 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [acf64d53]Received INIT, initializing chaincode -[2bc 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acf64d53]Init get response status: 200 -[2bd 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acf64d53]Init succeeded. Sending COMPLETED -[2be 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acf64d53]Move state message COMPLETED -[2bf 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [acf64d53]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2c0 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [acf64d53]send state message COMPLETED -[2c1 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [acf64d53]Received message COMPLETED from shim -[2c2 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [acf64d53]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2c3 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [acf64d53-d825-4d23-8e48-2f7731094717]HandleMessage- COMPLETED. Notify -[2c4 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:acf64d53-d825-4d23-8e48-2f7731094717 -[2c5 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2c6 10-12 08:31:59.52 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 -[2c7 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [acf64d53-d825-4d23-8e48-2f7731094717] -[2c8 10-12 08:31:59.52 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 -[2c9 10-12 08:31:59.52 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 = [234e58fc-826d-4c2c-934f-7cfd39daba4e] -[2ca 10-12 08:31:59.52 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=234e58fc-826d-4c2c-934f-7cfd39daba4e,syscc=true,proposal=0x0,canname=qscc:1.1.0 -[2cb 10-12 08:31:59.52 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 -[2cc 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Entry -[2cd 10-12 08:31:59.52 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 -[2ce 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [234e58fc]Inside sendExecuteMessage. Message INIT -[2cf 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[2d0 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute.sendExecuteMessage -> DEBU [234e58fc]sendExecuteMsg trigger event INIT -[2d1 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [234e58fc]Move state message INIT -[2d2 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [234e58fc]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[2d3 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[2d4 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [234e58fc]sending state message INIT -[2d5 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [234e58fc]Received message INIT from shim -[2d6 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [234e58fc]Handling ChaincodeMessage of type: INIT(state:ready) -[2d7 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU Entered state ready -[2d8 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func4.beforeInit -> DEBU [234e58fc]Received INIT, initializing chaincode -[2d9 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[2da 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [234e58fc]Init get response status: 200 -[2db 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [234e58fc]Init succeeded. Sending COMPLETED -[2dc 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [234e58fc]Move state message COMPLETED -[2dd 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [234e58fc]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2de 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [234e58fc]send state message COMPLETED -[2df 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [234e58fc]Received message COMPLETED from shim -[2e0 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [234e58fc]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2e1 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [234e58fc-826d-4c2c-934f-7cfd39daba4e]HandleMessage- COMPLETED. Notify -[2e2 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:234e58fc-826d-4c2c-934f-7cfd39daba4e -[2e3 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ExecuteWithErrorFilter.ExecuteWithErrorFilter.Execute.Execute -> DEBU Exit -[2e4 10-12 08:31:59.52 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 -[2e5 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func3.DeploySysCCs.deploySysCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [234e58fc-826d-4c2c-934f-7cfd39daba4e] -[2e6 10-12 08:31:59.52 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 -[2e7 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -[2e8 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -[2e9 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -[2ea 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -[2eb 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -[2ec 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -[2ed 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7e904cb9]Transaction completed. Sending COMPLETED -[2ee 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7e904cb9]Move state message COMPLETED -[2ef 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7e904cb9]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[2f0 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7e904cb9]send state message COMPLETED -[2f1 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [7e904cb9]Received message COMPLETED from shim -[2f2 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7e904cb9]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[2f3 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [7e904cb94fc72456bcdd100ca77c2f8910de223939b63e9ffe1c4fda0cf34706]HandleMessage- COMPLETED. Notify -[2f4 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:7e904cb94fc72456bcdd100ca77c2f8910de223939b63e9ffe1c4fda0cf34706 -[2f5 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[2f6 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[2f7 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[2f8 10-12 08:31:59.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit -[2f9 10-12 08:32:05.51 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 -[2fa 10-12 08:32:05.52 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -[2fb 10-12 08:32:05.52 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -[2fc 10-12 08:32:05.52 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -[2fd 10-12 08:32:05.52 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -[2fe 10-12 08:32:05.52 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -[2ff 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -[300 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -[301 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[302 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[303 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4217e8cf0 -[304 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\202\321\374\316\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\022\030\332\331\271\277\030\002\264|\277\231\326\331xs\n\253\3744\220q\324a*S" -[305 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[306 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[307 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{OrdererMSP 36068c0c188bcc10422a7644173f19968a7cc04c6b6dce907062106c00105673} -[308 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[309 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[30a 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc421881000, header channel_header:"\010\001\032\006\010\202\321\374\316\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICDDCCAbOgAwIBAgIRAIR2ICniVOqAmk/v4jrozFcwCgYIKoZIzj0EAwIwaTEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt\ncGxlLmNvbTAeFw0xNzEwMDYxMTQ4MDFaFw0yNzEwMDQxMTQ4MDFaMFgxCzAJBgNV\nBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp\nc2NvMRwwGgYDVQQDExNvcmRlcmVyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEFW26c9FKL8UjW02YplHrRRuPWUfCnzDHAXEjf7hIJxcW08MC\nWo5rTSz7FhY7wiehJJ93cvd+IdkwYNpcGwoBeqNNMEswDgYDVR0PAQH/BAQDAgeA\nMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg2ZqLgyNJ1O9c/zV71bAgSfG79jGr\nKJ8frscC2aM7CtkwCgYIKoZIzj0EAwIDRwAwRAIhANi4E0m2jAlwdksvXz0GE1WC\nxgL8No0o5WmvOSLs3/jDAh8rIkFxqeRHNiulmVzlI9ODgtZ7bqCXL13wEwy7OJBP\n-----END CERTIFICATE-----\n\022\030\332\331\271\277\030\002\264|\277\231\326\331xs\n\253\3744\220q\324a*S" -[30b 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU Transaction is for chain businesschannel -[30c 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[30d 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[30e 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[30f 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[310 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[311 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[312 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[313 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[314 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[315 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[316 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[317 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[318 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[319 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[31a 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[31b 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Groups] /Channel/Application/Org1MSP -[31c 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[31d 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Values] /Channel/Application/Org1MSP/AnchorPeers -[31e 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[31f 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[320 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[321 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[322 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[323 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[324 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[325 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[326 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[327 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[328 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[329 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[32a 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[32b 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[32c 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[32d 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[32e 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[32f 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[330 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[331 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[332 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[333 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[334 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[335 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[336 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[337 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[338 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[339 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[33a 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[33b 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[33c 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[33d 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[33e 10-12 08:32:05.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[33f 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[340 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[341 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[342 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[343 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[344 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[345 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[346 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[347 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[348 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[349 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[34a 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[34b 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[34c 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[34d 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[34e 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[34f 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel -[350 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application -[351 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org1MSP -[352 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/MSP -[353 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org1MSP/AnchorPeers -[354 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[355 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[356 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[357 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Application/Org2MSP -[358 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Application/Org2MSP/MSP -[359 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[35a 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[35b 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[35c 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[35d 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[35e 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[35f 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer -[360 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Groups] /Channel/Orderer/OrdererOrg -[361 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/OrdererOrg/MSP -[362 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[363 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[364 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[365 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ConsensusType -[366 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchSize -[367 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/BatchTimeout -[368 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/ChannelRestrictions -[369 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Orderer/KafkaBrokers -[36a 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[36b 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[36c 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[36d 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[36e 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/HashingAlgorithm -[36f 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/BlockDataHashingStructure -[370 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/Consortium -[371 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Values] /Channel/OrdererAddresses -[372 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[373 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[374 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/configtx] commitBlock.StoreBlock.Validate.Apply.NewBundle.NewManagerImpl.MapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[375 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[376 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[377 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[378 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[379 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[37a 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] commitBlock.StoreBlock.Validate.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[37b 10-12 08:32:05.56 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.Validate.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[37c 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.Validate.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[37d 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.Validate.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[37e 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.Validate.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[37f 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.Validate.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[380 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU config transaction received for chain businesschannel -[381 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[382 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[383 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating block [1] -[384 10-12 08:32:05.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] -[385 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -[386 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[387 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[388 10-12 08:32:05.57 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] -[389 10-12 08:32:05.57 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:%#v &{} -[38a 10-12 08:32:05.57 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 -[38b 10-12 08:32:05.57 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 = [] -[38c 10-12 08:32:05.57 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 -[38d 10-12 08:32:05.57 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 [] -[38e 10-12 08:32:05.57 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 -[38f 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[390 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[391 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[392 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -[393 10-12 08:32:05.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{0x67, 0x17, 0xcb, 0x84, 0xfb, 0x7c, 0xd0, 0x17, 0xd5, 0x8a, 0xeb, 0x4b, 0x51, 0xc1, 0xcd, 0x8d, 0xaa, 0x49, 0x2a, 0x12, 0xab, 0x4a, 0x8a, 0xfd, 0x59, 0xcc, 0x41, 0xaa, 0xb2, 0x8a, 0x3a, 0x28} txOffsets= -txId= locPointer=offset=70, bytesLength=12061 -] -[394 10-12 08:32:05.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=12379, bytesLength=12061] for tx ID: [] to index -[395 10-12 08:32:05.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=12379, bytesLength=12061] for tx number:[0] ID: [] to blockNumTranNum index -[396 10-12 08:32:05.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=[26239], isChainEmpty=[false], lastBlockNumber=[1] -[397 10-12 08:32:05.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 1 -[398 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 1 -[399 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Created block [1] with 1 transaction(s) -[39a 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -[39b 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[39c 10-12 08:32:05.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 -[39d 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[39e 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -[39f 10-12 08:32:05.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 [1] with [1] transactions -[3a0 10-12 08:32:05.58 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 -[3a1 10-12 08:32:05.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] -[3a2 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[3a3 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[3a4 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[3a5 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[3a6 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[3a7 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[3a8 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[3a9 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[3aa 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[3ab 10-12 08:32:05.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[3ac 10-12 08:32:11.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entry -[3ad 10-12 08:32:11.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421d6c240 -[3ae 10-12 08:32:11.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[3af 10-12 08:32:11.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[3b0 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 13d5f43dc1a518c5a713b7b0fec3073c91671c17db38113b8550f1429d2b16f9} -[3b1 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[3b2 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[3b3 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421a806e0, header 0xc421d6c270 -[3b4 10-12 08:32:11.95 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" -[3b5 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 654b09a0393ed1f62234970ea33169abe2ec0852b9b59d0b9c6c59f6a9827ad9 -[3b6 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 654b09a0393ed1f62234970ea33169abe2ec0852b9b59d0b9c6c59f6a9827ad9 channel id: -[3b7 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 654b09a0393ed1f62234970ea33169abe2ec0852b9b59d0b9c6c59f6a9827ad9 channel id: version: 1.1.0 -[3b8 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=,chaincode=lscc,version=1.1.0,txid=654b09a0393ed1f62234970ea33169abe2ec0852b9b59d0b9c6c59f6a9827ad9,syscc=true,proposal=0xc421a806e0,canname=lscc:1.1.0 -[3b9 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[3ba 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[3bb 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[3bc 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [654b09a0]Inside sendExecuteMessage. Message TRANSACTION -[3bd 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[3be 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[3bf 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [654b09a0]sendExecuteMsg trigger event TRANSACTION -[3c0 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [654b09a0]Move state message TRANSACTION -[3c1 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [654b09a0]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[3c2 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[3c3 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [654b09a0]sending state message TRANSACTION -[3c4 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [654b09a0]Received message TRANSACTION from shim -[3c5 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [654b09a0]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[3c6 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [654b09a0]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[3c7 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [654b09a0]Transaction completed. Sending COMPLETED -[3c8 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [654b09a0]Move state message COMPLETED -[3c9 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [654b09a0]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[3ca 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [654b09a0]send state message COMPLETED -[3cb 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [654b09a0]Received message COMPLETED from shim -[3cc 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [654b09a0]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[3cd 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [654b09a0393ed1f62234970ea33169abe2ec0852b9b59d0b9c6c59f6a9827ad9]HandleMessage- COMPLETED. Notify -[3ce 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:654b09a0393ed1f62234970ea33169abe2ec0852b9b59d0b9c6c59f6a9827ad9 -[3cf 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[3d0 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[3d1 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[3d2 10-12 08:32:11.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit -[3d3 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entry -[3d4 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b86240 -[3d5 10-12 08:32:13.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 -[3d6 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[3d7 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 13d5f43dc1a518c5a713b7b0fec3073c91671c17db38113b8550f1429d2b16f9} -[3d8 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[3d9 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[3da 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421a81270, header 0xc421b86270 -[3db 10-12 08:32:13.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" -[3dc 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 -[3dd 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] -[3de 10-12 08:32:13.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 -[3df 10-12 08:32:13.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 = [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] -[3e0 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 channel id: businesschannel -[3e1 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 channel id: businesschannel version: 1.1.0 -[3e2 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6,syscc=true,proposal=0xc421a81270,canname=lscc:1.1.0 -[3e3 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[3e4 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[3e5 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[3e6 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [973cba8d]Inside sendExecuteMessage. Message TRANSACTION -[3e7 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[3e8 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[3e9 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [973cba8d]sendExecuteMsg trigger event TRANSACTION -[3ea 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Move state message TRANSACTION -[3eb 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[3ec 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[3ed 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]sending state message TRANSACTION -[3ee 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]Received message TRANSACTION from shim -[3ef 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [973cba8d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[3f0 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [973cba8d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[3f1 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [973cba8d]Sending GET_STATE -[3f2 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Received message GET_STATE from shim -[3f3 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[3f4 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [973cba8d]Received GET_STATE, invoking get state from ledger -[3f5 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[3f6 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [973cba8d] getting state for chaincode lscc, key mycc, channel businesschannel -[3f7 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[3f8 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [973cba8d]No state associated with key: mycc. Sending RESPONSE with an empty payload -[3f9 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [973cba8d]handleGetState serial send RESPONSE -[3fa 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]Received message RESPONSE from shim -[3fb 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [973cba8d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[3fc 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [973cba8d]before send -[3fd 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [973cba8d]after send -[3fe 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [973cba8d]Received RESPONSE, communicated (state:ready) -[3ff 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [973cba8d]GetState received payload RESPONSE -[400 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [973cba8d]Inside putstate -[401 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [973cba8d]Sending PUT_STATE -[402 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Received message PUT_STATE from shim -[403 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[404 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[405 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [973cba8d]state is ready -[406 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [973cba8d]Completed PUT_STATE. Sending RESPONSE -[407 10-12 08:32:13.06 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [973cba8d]enterBusyState trigger event RESPONSE -[408 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Move state message RESPONSE -[409 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[40a 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[40b 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]sending state message RESPONSE -[40c 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]Received message RESPONSE from shim -[40d 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [973cba8d]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[40e 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [973cba8d]before send -[40f 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [973cba8d]after send -[410 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [973cba8d]Received RESPONSE, communicated (state:ready) -[411 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeploy.createChaincode.putChaincodeData.PutState.handlePutState -> DEBU [973cba8d]Received RESPONSE. Successfully updated state -[412 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]Transaction completed. Sending COMPLETED -[413 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]Move state message COMPLETED -[414 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [973cba8d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[415 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]send state message COMPLETED -[416 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Received message COMPLETED from shim -[417 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[418 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6]HandleMessage- COMPLETED. Notify -[419 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 -[41a 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[41b 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6,syscc=false,proposal=0xc421a81270,canname=mycc:1.0 -[41c 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU launchAndWaitForRegister fetched 1820 bytes from file system -[41d 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU chaincode mycc:1.0 is being launched -[41e 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Executable is chaincode -[41f 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU Args [chaincode -peer.address=peer0.org1.example.com:7052] -[420 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.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_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}] -[421 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.getLaunchConfigs -> DEBU FilesToUpload [/etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/client.crt] -[422 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container: mycc:1.0(networkid:dev,peerid:peer0.org1.example.com) -[423 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[424 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister -> 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 - CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.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} -[425 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(dev-peer0.org1.example.com-mycc-1.0) lock -[426 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (dev-peer0.org1.example.com-mycc-1.0) lock -[427 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-mycc-1.0 -[428 10-12 08:32:13.07 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) -[429 10-12 08:32:13.07 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) -[42a 10-12 08:32:13.07 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) -[42b 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Start container dev-peer0.org1.example.com-mycc-1.0 -[42c 10-12 08:32:13.07 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -[42d 10-12 08:32:13.08 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -[42e 10-12 08:32:13.08 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 -[42f 10-12 08:32:13.09 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" \ - org.hyperledger.fabric.chaincode.id.version="1.0" \ - org.hyperledger.fabric.chaincode.type="GOLANG" \ - org.hyperledger.fabric.version="1.1.0" \ - org.hyperledger.fabric.base.version="0.4.2" -ENV CORE_CHAINCODE_BUILDLEVEL=1.1.0 -ENV CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -COPY peer.crt /etc/hyperledger/fabric/peer.crt -[430 10-12 08:32:13.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 -[431 10-12 08:32:34.83 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -[432 10-12 08:32:34.83 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU start-recreated image successfully -[433 10-12 08:32:34.83 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-mycc-1.0 -[434 10-12 08:32:34.91 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-mycc-1.0-384f11f484b9302df90b453200cfb25174305fce8f53f4e94d45ee3b6cab0ce9 -[435 10-12 08:32:35.52 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] do.do.Start -> DEBU Started container dev-peer0.org1.example.com-mycc-1.0 -[436 10-12 08:32:35.52 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(dev-peer0.org1.example.com-mycc-1.0) -[437 10-12 08:32:35.60 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 -[438 10-12 08:32:35.60 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 -[439 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU []Received message REGISTER from shim -[43a 10-12 08:32:35.60 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 -[43b 10-12 08:32:35.60 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 -[43c 10-12 08:32:35.60 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 -[43d 10-12 08:32:35.60 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 -[43e 10-12 08:32:35.60 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 -[43f 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.launchAndWaitForRegister.func1 -> DEBU chaincode mycc:1.0 launch seq completed -[440 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready -> DEBU sending READY -[441 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[442 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch.sendReady.ready.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[443 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Move state message READY -[444 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: READY in state established -[445 10-12 08:32:35.60 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 [973cba8d]Entered state ready -[446 10-12 08:32:35.60 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:973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 -[447 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]sending state message READY -[448 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU sending init completed -[449 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Launch -> DEBU LaunchChaincode complete -[44a 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Entry -[44b 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[44c 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [973cba8d]Inside sendExecuteMessage. Message INIT -[44d 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[44e 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[44f 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute.sendExecuteMessage -> DEBU [973cba8d]sendExecuteMsg trigger event INIT -[450 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Move state message INIT -[451 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: INIT in state ready -[452 10-12 08:32:35.60 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 -[453 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]sending state message INIT -[454 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Received message PUT_STATE from shim -[455 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[456 10-12 08:32:35.60 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 -[457 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [973cba8d]state is ready -[458 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [973cba8d]Completed PUT_STATE. Sending RESPONSE -[459 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [973cba8d]enterBusyState trigger event RESPONSE -[45a 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Move state message RESPONSE -[45b 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[45c 10-12 08:32:35.60 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 -[45d 10-12 08:32:35.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]sending state message RESPONSE -[45e 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Received message PUT_STATE from shim -[45f 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[460 10-12 08:32:35.61 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 -[461 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [973cba8d]state is ready -[462 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [973cba8d]Completed PUT_STATE. Sending RESPONSE -[463 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [973cba8d]enterBusyState trigger event RESPONSE -[464 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Move state message RESPONSE -[465 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[466 10-12 08:32:35.61 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 -[467 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]sending state message RESPONSE -[468 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Received message COMPLETED from shim -[469 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[46a 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6]HandleMessage- COMPLETED. Notify -[46b 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 -[46c 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.Execute.Execute -> DEBU Exit -[46d 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[46e 10-12 08:32:35.61 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 -[46f 10-12 08:32:35.61 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 [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] -[470 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[471 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 channel id: businesschannel chaincode id: name:"lscc" -[472 10-12 08:32:35.61 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 -[473 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 channel id: businesschannel version: 1.1.0 -[474 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6,syscc=true,proposal=0xc421a81270,canname=escc:1.1.0 -[475 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[476 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[477 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[478 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [973cba8d]Inside sendExecuteMessage. Message TRANSACTION -[479 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[47a 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[47b 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [973cba8d]sendExecuteMsg trigger event TRANSACTION -[47c 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Move state message TRANSACTION -[47d 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[47e 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[47f 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]sending state message TRANSACTION -[480 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]Received message TRANSACTION from shim -[481 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [973cba8d]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[482 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [973cba8d]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[483 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[484 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[485 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]Transaction completed. Sending COMPLETED -[486 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]Move state message COMPLETED -[487 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [973cba8d]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[488 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [973cba8d]send state message COMPLETED -[489 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [973cba8d]Received message COMPLETED from shim -[48a 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[48b 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6]HandleMessage- COMPLETED. Notify -[48c 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 -[48d 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[48e 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[48f 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[490 10-12 08:32:35.61 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 [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] -[491 10-12 08:32:35.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit -[492 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -[493 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -[494 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[495 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[496 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc421d10990 -[497 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\215\321\374\316\005\020\244\335\323\035\"\017businesschannel*@973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\306\321mjb\266Zk\251\357\225\033\303\032S\354Is#\342\322]\331\231" -[498 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[499 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[49a 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 13d5f43dc1a518c5a713b7b0fec3073c91671c17db38113b8550f1429d2b16f9} -[49b 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[49c 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[49d 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4218caa80, header channel_header:"\010\003\032\013\010\215\321\374\316\005\020\244\335\323\035\"\017businesschannel*@973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\306\321mjb\266Zk\251\357\225\033\303\032S\354Is#\342\322]\331\231" -[49e 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[49f 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[4a0 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[4a1 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU Transaction is for chain businesschannel -[4a2 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] -[4a3 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU Validating transaction vscc tx validate -[4a4 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[4a5 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] -[4a6 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=35476e77-ef24-4318-b970-231564189abc,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[4a7 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 chaindID businesschannel -[4a8 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[4a9 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[4aa 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[4ab 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35476e77]Inside sendExecuteMessage. Message TRANSACTION -[4ac 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[4ad 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [35476e77]sendExecuteMsg trigger event TRANSACTION -[4ae 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35476e77]Move state message TRANSACTION -[4af 10-12 08:32:37.69 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35476e77]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[4b0 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[4b1 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35476e77]sending state message TRANSACTION -[4b2 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35476e77]Received message TRANSACTION from shim -[4b3 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35476e77]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[4b4 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [35476e77]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[4b5 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[4b6 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[4b7 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC info: doing special validation for LSCC -[4b8 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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}} -[4b9 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 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}} -[4ba 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Namespace lscc -[4bb 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [1d1340ed-267a-438b-8a0c-c2633b0db468] -[4bc 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.ValidateLSCCInvocation.getInstantiatedCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[4bd 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.ValidateLSCCInvocation.getInstantiatedCC.Done -> DEBU Done with transaction simulation / query execution [1d1340ed-267a-438b-8a0c-c2633b0db468] -[4be 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation -> DEBU Validating deploy for cc mycc version 1.0 -[4bf 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.ValidateLSCCInvocation.checkInstantiationPolicy -> DEBU VSCC info: checkInstantiationPolicy starts, policy is &cauthdsl.policy{evaluator:(func([]*common.SignedData, []bool) bool)(0x97c710), deserializer:(*msp.mspManagerImpl)(0xc421901b20)} -[4c0 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[4c1 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35476e77]Transaction completed. Sending COMPLETED -[4c2 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35476e77]Move state message COMPLETED -[4c3 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [35476e77]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[4c4 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [35476e77]send state message COMPLETED -[4c5 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [35476e77]Received message COMPLETED from shim -[4c6 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35476e77]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[4c7 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [35476e77-ef24-4318-b970-231564189abc]HandleMessage- COMPLETED. Notify -[4c8 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:35476e77-ef24-4318-b970-231564189abc -[4c9 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[4ca 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] -[4cb 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[4cc 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating block [2] -[4cd 10-12 08:32:37.70 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] -[4ce 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -[4cf 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[4d0 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[4d1 10-12 08:32:37.70 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 -[4d2 10-12 08:32:37.70 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) -[4d3 10-12 08:32:37.70 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 [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] marked as valid by state validator -[4d4 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[4d5 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[4d6 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[4d7 10-12 08:32:37.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -[4d8 10-12 08:32:37.71 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{0xf0, 0x70, 0xb0, 0xc6, 0x3d, 0xaf, 0x2c, 0xea, 0xf7, 0xa, 0xfb, 0x10, 0xeb, 0x84, 0x5a, 0xb4, 0x8a, 0x16, 0x2, 0xf1, 0xe2, 0x91, 0xd, 0x46, 0x9, 0xc6, 0x17, 0x4, 0x81, 0xc6, 0x69, 0x59} txOffsets= -txId=973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 locPointer=offset=70, bytesLength=3449 -] -[4d9 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26309, bytesLength=3449] for tx ID: [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] to index -[4da 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26309, bytesLength=3449] for tx number:[0] ID: [973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6] to blockNumTranNum index -[4db 10-12 08:32:37.71 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=[31556], isChainEmpty=[false], lastBlockNumber=[2] -[4dc 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 2 -[4dd 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 2 -[4de 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Created block [2] with 1 transaction(s) -[4df 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -[4e0 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[4e1 10-12 08:32:37.71 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 -[4e2 10-12 08:32:37.71 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}] -[4e3 10-12 08:32:37.71 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}] -[4e4 10-12 08:32:37.71 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}] -[4e5 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[4e6 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -[4e7 10-12 08:32:37.71 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 -[4e8 10-12 08:32:37.71 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] -[4e9 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[4ea 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [2] contains transaction id: 973cba8d9e662e32abce5fd1e65065a1fea0c5e654a9acffd0c895ee12beb0a6 -[4eb 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[4ec 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[4ed 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[4ee 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[4ef 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[4f0 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[4f1 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[4f2 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[4f3 10-12 08:32:37.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[4f4 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entry -[4f5 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421bea960 -[4f6 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[4f7 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[4f8 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 13d5f43dc1a518c5a713b7b0fec3073c91671c17db38113b8550f1429d2b16f9} -[4f9 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[4fa 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[4fb 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42195e550, header 0xc421bea990 -[4fc 10-12 08:32:41.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:"mycc" -[4fd 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11 -[4fe 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11] -[4ff 10-12 08:32:41.98 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 -[500 10-12 08:32:41.98 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 = [370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11] -[501 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11 channel id: businesschannel -[502 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11,syscc=true,proposal=0xc42195e550,canname=lscc:1.1.0 -[503 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[504 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -[505 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[506 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [370f1ed4]Inside sendExecuteMessage. Message TRANSACTION -[507 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[508 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[509 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [370f1ed4]sendExecuteMsg trigger event TRANSACTION -[50a 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]Move state message TRANSACTION -[50b 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[50c 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[50d 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]sending state message TRANSACTION -[50e 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [370f1ed4]Received message TRANSACTION from shim -[50f 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [370f1ed4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[510 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [370f1ed4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[511 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [370f1ed4]Sending GET_STATE -[512 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]Received message GET_STATE from shim -[513 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[514 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [370f1ed4]Received GET_STATE, invoking get state from ledger -[515 10-12 08:32:41.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[516 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [370f1ed4] getting state for chaincode lscc, key mycc, channel businesschannel -[517 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[518 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [370f1ed4]Got state. Sending RESPONSE -[519 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [370f1ed4]handleGetState serial send RESPONSE -[51a 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [370f1ed4]Received message RESPONSE from shim -[51b 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [370f1ed4]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[51c 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [370f1ed4]before send -[51d 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [370f1ed4]after send -[51e 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [370f1ed4]GetState received payload RESPONSE -[51f 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [370f1ed4]Received RESPONSE, communicated (state:ready) -[520 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [370f1ed4]Transaction completed. Sending COMPLETED -[521 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [370f1ed4]Move state message COMPLETED -[522 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [370f1ed4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[523 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [370f1ed4]send state message COMPLETED -[524 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]Received message COMPLETED from shim -[525 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[526 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11]HandleMessage- COMPLETED. Notify -[527 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11 -[528 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -[529 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[52a 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11 channel id: businesschannel version: 1.0 -[52b 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11,syscc=false,proposal=0xc42195e550,canname=mycc:1.0 -[52c 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -[52d 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[52e 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[52f 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [370f1ed4]Inside sendExecuteMessage. Message TRANSACTION -[530 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[531 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[532 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [370f1ed4]sendExecuteMsg trigger event TRANSACTION -[533 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]Move state message TRANSACTION -[534 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[535 10-12 08:32:41.99 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 -[536 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]sending state message TRANSACTION -[537 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]Received message GET_STATE from shim -[538 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed4]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[539 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [370f1ed4]Received GET_STATE, invoking get state from ledger -[53a 10-12 08:32:41.99 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 -[53b 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [370f1ed4] getting state for chaincode mycc, key a, channel businesschannel -[53c 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -[53d 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [370f1ed4]Got state. Sending RESPONSE -[53e 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [370f1ed4]handleGetState serial send RESPONSE -[53f 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]Received message COMPLETED from shim -[540 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[541 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11]HandleMessage- COMPLETED. Notify -[542 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11 -[543 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[544 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[545 10-12 08:32:41.99 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 -[546 10-12 08:32:41.99 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 [370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11] -[547 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[548 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11 channel id: businesschannel chaincode id: name:"mycc" -[549 10-12 08:32:41.99 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 -[54a 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11 channel id: businesschannel version: 1.1.0 -[54b 10-12 08:32:41.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11,syscc=true,proposal=0xc42195e550,canname=escc:1.1.0 -[54c 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[54d 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[54e 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[54f 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [370f1ed4]Inside sendExecuteMessage. Message TRANSACTION -[550 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[551 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[552 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [370f1ed4]sendExecuteMsg trigger event TRANSACTION -[553 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]Move state message TRANSACTION -[554 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed4]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[555 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[556 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]sending state message TRANSACTION -[557 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [370f1ed4]Received message TRANSACTION from shim -[558 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [370f1ed4]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[559 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [370f1ed4]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[55a 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[55b 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[55c 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [370f1ed4]Transaction completed. Sending COMPLETED -[55d 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [370f1ed4]Move state message COMPLETED -[55e 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [370f1ed4]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[55f 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [370f1ed4]send state message COMPLETED -[560 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [370f1ed4]Received message COMPLETED from shim -[561 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed4]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[562 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11]HandleMessage- COMPLETED. Notify -[563 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11 -[564 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[565 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[566 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[567 10-12 08:32:42.00 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 [370f1ed47d71cf3df4d631db4edf65745e13285904d5797050ce132d2f17fc11] -[568 10-12 08:32:42.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit -[569 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entry -[56a 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc421b663c0 -[56b 10-12 08:32:43.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 -[56c 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[56d 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 13d5f43dc1a518c5a713b7b0fec3073c91671c17db38113b8550f1429d2b16f9} -[56e 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[56f 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[570 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42195f540, header 0xc421b663f0 -[571 10-12 08:32:43.15 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" -[572 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 -[573 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] -[574 10-12 08:32:43.15 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 -[575 10-12 08:32:43.15 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 = [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] -[576 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 channel id: businesschannel -[577 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0,syscc=true,proposal=0xc42195f540,canname=lscc:1.1.0 -[578 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[579 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -[57a 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[57b 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3f01d58b]Inside sendExecuteMessage. Message TRANSACTION -[57c 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[57d 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[57e 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3f01d58b]sendExecuteMsg trigger event TRANSACTION -[57f 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Move state message TRANSACTION -[580 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[581 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[582 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]sending state message TRANSACTION -[583 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f01d58b]Received message TRANSACTION from shim -[584 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3f01d58b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[585 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3f01d58b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[586 10-12 08:32:43.15 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3f01d58b]Sending GET_STATE -[587 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Received message GET_STATE from shim -[588 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[589 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3f01d58b]Received GET_STATE, invoking get state from ledger -[58a 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[58b 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b] getting state for chaincode lscc, key mycc, channel businesschannel -[58c 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[58d 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b]Got state. Sending RESPONSE -[58e 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3f01d58b]handleGetState serial send RESPONSE -[58f 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f01d58b]Received message RESPONSE from shim -[590 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3f01d58b]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[591 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3f01d58b]before send -[592 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [3f01d58b]after send -[593 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [3f01d58b]Received RESPONSE, communicated (state:ready) -[594 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [3f01d58b]GetState received payload RESPONSE -[595 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f01d58b]Transaction completed. Sending COMPLETED -[596 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f01d58b]Move state message COMPLETED -[597 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3f01d58b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[598 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f01d58b]send state message COMPLETED -[599 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Received message COMPLETED from shim -[59a 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[59b 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0]HandleMessage- COMPLETED. Notify -[59c 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 -[59d 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -[59e 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[59f 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 channel id: businesschannel version: 1.0 -[5a0 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0,syscc=false,proposal=0xc42195f540,canname=mycc:1.0 -[5a1 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -[5a2 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[5a3 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[5a4 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3f01d58b]Inside sendExecuteMessage. Message TRANSACTION -[5a5 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[5a6 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[5a7 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3f01d58b]sendExecuteMsg trigger event TRANSACTION -[5a8 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Move state message TRANSACTION -[5a9 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[5aa 10-12 08:32:43.16 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 -[5ab 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]sending state message TRANSACTION -[5ac 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Received message GET_STATE from shim -[5ad 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5ae 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3f01d58b]Received GET_STATE, invoking get state from ledger -[5af 10-12 08:32:43.16 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 -[5b0 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b] getting state for chaincode mycc, key a, channel businesschannel -[5b1 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -[5b2 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b]Got state. Sending RESPONSE -[5b3 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3f01d58b]handleGetState serial send RESPONSE -[5b4 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Received message GET_STATE from shim -[5b5 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[5b6 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [3f01d58b]Received GET_STATE, invoking get state from ledger -[5b7 10-12 08:32:43.16 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 -[5b8 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b] getting state for chaincode mycc, key b, channel businesschannel -[5b9 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=b -[5ba 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b]Got state. Sending RESPONSE -[5bb 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3f01d58b]handleGetState serial send RESPONSE -[5bc 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Received message PUT_STATE from shim -[5bd 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5be 10-12 08:32:43.16 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 -[5bf 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b]state is ready -[5c0 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b]Completed PUT_STATE. Sending RESPONSE -[5c1 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3f01d58b]enterBusyState trigger event RESPONSE -[5c2 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Move state message RESPONSE -[5c3 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5c4 10-12 08:32:43.16 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 -[5c5 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]sending state message RESPONSE -[5c6 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Received message PUT_STATE from shim -[5c7 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: PUT_STATE in state ready -[5c8 10-12 08:32:43.16 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 -[5c9 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b]state is ready -[5ca 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [3f01d58b]Completed PUT_STATE. Sending RESPONSE -[5cb 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [3f01d58b]enterBusyState trigger event RESPONSE -[5cc 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Move state message RESPONSE -[5cd 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: RESPONSE in state ready -[5ce 10-12 08:32:43.16 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 -[5cf 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]sending state message RESPONSE -[5d0 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Received message COMPLETED from shim -[5d1 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5d2 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0]HandleMessage- COMPLETED. Notify -[5d3 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 -[5d4 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5d5 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[5d6 10-12 08:32:43.16 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 -[5d7 10-12 08:32:43.16 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 [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] -[5d8 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[5d9 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 channel id: businesschannel chaincode id: name:"mycc" -[5da 10-12 08:32:43.16 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 -[5db 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 channel id: businesschannel version: 1.1.0 -[5dc 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0,syscc=true,proposal=0xc42195f540,canname=escc:1.1.0 -[5dd 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[5de 10-12 08:32:43.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[5df 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[5e0 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3f01d58b]Inside sendExecuteMessage. Message TRANSACTION -[5e1 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[5e2 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[5e3 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [3f01d58b]sendExecuteMsg trigger event TRANSACTION -[5e4 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Move state message TRANSACTION -[5e5 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[5e6 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[5e7 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]sending state message TRANSACTION -[5e8 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f01d58b]Received message TRANSACTION from shim -[5e9 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3f01d58b]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[5ea 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [3f01d58b]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[5eb 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[5ec 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[5ed 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f01d58b]Transaction completed. Sending COMPLETED -[5ee 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f01d58b]Move state message COMPLETED -[5ef 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [3f01d58b]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[5f0 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [3f01d58b]send state message COMPLETED -[5f1 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [3f01d58b]Received message COMPLETED from shim -[5f2 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[5f3 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0]HandleMessage- COMPLETED. Notify -[5f4 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 -[5f5 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[5f6 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[5f7 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[5f8 10-12 08:32:43.17 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 [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] -[5f9 10-12 08:32:43.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit -[5fa 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [0] -[5fb 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [0] -[5fc 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[5fd 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU Validating transaction peer.ValidateTransaction() -[5fe 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4218fcea0 -[5ff 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\253\321\374\316\005\020\353\202\324H\"\017businesschannel*@3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\365`\234\"v2\365\212\302\037\251\331\245\331\366OoI\207\256\t\301\236\004" -[600 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[601 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[602 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 13d5f43dc1a518c5a713b7b0fec3073c91671c17db38113b8550f1429d2b16f9} -[603 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[604 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[605 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc421ac6800, header channel_header:"\010\003\032\013\010\253\321\374\316\005\020\353\202\324H\"\017businesschannel*@3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0:\010\022\006\022\004mycc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRALRPCr6neaWpw8EQwGqN6XcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTcxMDA2MTE0ODAxWhcNMjcxMDA0MTE0ODAx\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNlIyfu6DChVjPpu3/jXABVwQ1fdeMx2\nJJyD9WxjFWxPKQS6lRv3BMkQIF6yIcAbUYUy/TtuxAwkg2ecGYWLcBijTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIP59CeWy4vex\nywqV4qgQ4okNtW+5PbMpWjANdN92qfN7MAoGCCqGSM49BAMCA0gAMEUCIQDwP0uK\nMa5QLnLKNKBqa8xUqNMxIq5hk91C5MYUDN/EPAIgTmcnNA3LEIL6XkhLRWLC1hil\nRkD7CYqhMTbfmDd5+mc=\n-----END CERTIFICATE-----\n\022\030\365`\234\"v2\365\212\302\037\251\331\245\331\366OoI\207\256\t\301\236\004" -[606 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[607 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[608 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/validation] commitBlock.StoreBlock.Validate.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[609 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU Transaction is for chain businesschannel -[60a 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.Validate.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] -[60b 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU Validating transaction vscc tx validate -[60c 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [16fed0a5-9932-4ae4-9338-3d4bd7b72622] -[60d 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[60e 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.Validate.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [16fed0a5-9932-4ae4-9338-3d4bd7b72622] -[60f 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[610 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] -[611 10-12 08:32:45.25 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.GetCCContext.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=vscc,version=1.1.0,txid=1d83fa08-17b6-4f9a-a7b3-6223bcefac48,syscc=true,proposal=0x0,canname=vscc:1.1.0 -[612 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Invoking VSCC txid 3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 chaindID businesschannel -[613 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : vscc:1.1.0 -[614 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[615 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: vscc:1.1.0 -[616 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d83fa08]Inside sendExecuteMessage. Message TRANSACTION -[617 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[618 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [1d83fa08]sendExecuteMsg trigger event TRANSACTION -[619 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d83fa08]Move state message TRANSACTION -[61a 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d83fa08]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[61b 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[61c 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d83fa08]sending state message TRANSACTION -[61d 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d83fa08]Received message TRANSACTION from shim -[61e 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d83fa08]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[61f 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [1d83fa08]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[620 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC invoked -[621 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[622 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/scc/vscc] Invoke -> DEBU VSCC exists successfully -[623 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d83fa08]Transaction completed. Sending COMPLETED -[624 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d83fa08]Move state message COMPLETED -[625 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1d83fa08]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[626 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1d83fa08]send state message COMPLETED -[627 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [1d83fa08]Received message COMPLETED from shim -[628 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d83fa08]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[629 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [1d83fa08-17b6-4f9a-a7b3-6223bcefac48]HandleMessage- COMPLETED. Notify -[62a 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:1d83fa08-17b6-4f9a-a7b3-6223bcefac48 -[62b 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/chaincode] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ExecuteChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[62c 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.Validate.VSCCValidateTx.VSCCValidateTxForCC.ReleaseContext.Done -> DEBU Done with transaction simulation / query execution [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] -[62d 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[62e 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating block [3] -[62f 10-12 08:32:45.26 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] -[630 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -[631 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[632 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[633 10-12 08:32:45.26 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 -[634 10-12 08:32:45.26 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:0x2, TxNum:0x0} and read version=&version.Height{BlockNum:0x2, TxNum:0x0} -[635 10-12 08:32:45.26 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 -[636 10-12 08:32:45.26 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:0x2, TxNum:0x0} and read version=&version.Height{BlockNum:0x2, TxNum:0x0} -[637 10-12 08:32:45.26 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 -[638 10-12 08:32:45.26 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:0x2, TxNum:0x0} and read version=&version.Height{BlockNum:0x2, TxNum:0x0} -[639 10-12 08:32:45.26 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 [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] marked as valid by state validator -[63a 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[63b 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[63c 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[63d 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -[63e 10-12 08:32:45.26 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{0xe4, 0xc2, 0x6, 0xb7, 0xd0, 0xc6, 0x97, 0x3, 0xaa, 0x10, 0x35, 0xfd, 0x3d, 0x2b, 0x89, 0x98, 0x29, 0x89, 0x14, 0x69, 0x3c, 0xdc, 0x10, 0x6d, 0xb2, 0x69, 0x92, 0x6a, 0x4a, 0xdd, 0x4f, 0xdf} txOffsets= -txId=3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 locPointer=offset=70, bytesLength=2909 -] -[63f 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=31626, bytesLength=2909] for tx ID: [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] to index -[640 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=31626, bytesLength=2909] for tx number:[0] ID: [3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0] to blockNumTranNum index -[641 10-12 08:32:45.26 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=[36334], isChainEmpty=[false], lastBlockNumber=[3] -[642 10-12 08:32:45.26 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing pvt data for block = 3 -[643 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed pvt data for block = 3 -[644 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Created block [3] with 1 transaction(s) -[645 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -[646 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[647 10-12 08:32:45.27 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 -[648 10-12 08:32:45.27 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}] -[649 10-12 08:32:45.27 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}] -[64a 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[64b 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -[64c 10-12 08:32:45.27 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 -[64d 10-12 08:32:45.27 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] -[64e 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[64f 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 3f01d58b1e5377028f9271e1a9988f473c528aee69525fa1c3dc0e6a83935ae0 -[650 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[651 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[652 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[653 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[654 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[655 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[656 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[657 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[658 10-12 08:32:45.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[659 10-12 08:32:47.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Entry -[65a 10-12 08:32:47.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4217e8150 -[65b 10-12 08:32:47.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 -[65c 10-12 08:32:47.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator starts -[65d 10-12 08:32:47.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is &{Org1MSP 13d5f43dc1a518c5a713b7b0fec3073c91671c17db38113b8550f1429d2b16f9} -[65e 10-12 08:32:47.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator info: creator is valid -[65f 10-12 08:32:47.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.checkSignatureFromCreator -> DEBU checkSignatureFromCreator exists successfully -[660 10-12 08:32:47.33 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc421856dc0, header 0xc4217e8180 -[661 10-12 08:32:47.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:"mycc" -[662 10-12 08:32:47.33 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU processing txid: 30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346 -[663 10-12 08:32:47.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346] -[664 10-12 08:32:47.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 -[665 10-12 08:32:47.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 = [30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346] -[666 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Entry - txid: 30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346 channel id: businesschannel -[667 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=lscc,version=1.1.0,txid=30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346,syscc=true,proposal=0xc421856dc0,canname=lscc:1.1.0 -[668 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : lscc:1.1.0 -[669 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Entry -[66a 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: lscc:1.1.0 -[66b 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [30fd87fe]Inside sendExecuteMessage. Message TRANSACTION -[66c 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[66d 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[66e 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [30fd87fe]sendExecuteMsg trigger event TRANSACTION -[66f 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]Move state message TRANSACTION -[670 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[671 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[672 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]sending state message TRANSACTION -[673 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30fd87fe]Received message TRANSACTION from shim -[674 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30fd87fe]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[675 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [30fd87fe]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[676 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [30fd87fe]Sending GET_STATE -[677 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]Received message GET_STATE from shim -[678 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[679 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [30fd87fe]Received GET_STATE, invoking get state from ledger -[67a 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[67b 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [30fd87fe] getting state for chaincode lscc, key mycc, channel businesschannel -[67c 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=mycc -[67d 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [30fd87fe]Got state. Sending RESPONSE -[67e 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [30fd87fe]handleGetState serial send RESPONSE -[67f 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30fd87fe]Received message RESPONSE from shim -[680 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30fd87fe]Handling ChaincodeMessage of type: RESPONSE(state:ready) -[681 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [30fd87fe]before send -[682 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse.sendChannel -> DEBU [30fd87fe]after send -[683 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.afterEventCallbacks.func2.afterResponse -> DEBU [30fd87fe]Received RESPONSE, communicated (state:ready) -[684 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [30fd87fe]GetState received payload RESPONSE -[685 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30fd87fe]Transaction completed. Sending COMPLETED -[686 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30fd87fe]Move state message COMPLETED -[687 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30fd87fe]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[688 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30fd87fe]send state message COMPLETED -[689 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]Received message COMPLETED from shim -[68a 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[68b 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346]HandleMessage- COMPLETED. Notify -[68c 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346 -[68d 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.getCDSFromLSCC.GetChaincodeDataFromLSCC.ExecuteChaincode.Execute.Execute -> DEBU Exit -[68e 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.CheckInsantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[68f 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Entry - txid: 30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346 channel id: businesschannel version: 1.0 -[690 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=mycc,version=1.0,txid=30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346,syscc=false,proposal=0xc421856dc0,canname=mycc:1.0 -[691 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : mycc:1.0 -[692 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[693 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: mycc:1.0 -[694 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [30fd87fe]Inside sendExecuteMessage. Message TRANSACTION -[695 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[696 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[697 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [30fd87fe]sendExecuteMsg trigger event TRANSACTION -[698 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]Move state message TRANSACTION -[699 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[69a 10-12 08:32:47.34 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 -[69b 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]sending state message TRANSACTION -[69c 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]Received message GET_STATE from shim -[69d 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe]Fabric side Handling ChaincodeMessage of type: GET_STATE in state ready -[69e 10-12 08:32:47.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.Event.afterEventCallbacks.func3.afterGetState -> DEBU [30fd87fe]Received GET_STATE, invoking get state from ledger -[69f 10-12 08:32:47.34 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 -[6a0 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [30fd87fe] getting state for chaincode mycc, key a, channel businesschannel -[6a1 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] GetState.getState.GetState.GetState -> DEBU GetState(). ns=mycc, key=a -[6a2 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [30fd87fe]Got state. Sending RESPONSE -[6a3 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] 1 -> DEBU [30fd87fe]handleGetState serial send RESPONSE -[6a4 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]Received message COMPLETED from shim -[6a5 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6a6 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346]HandleMessage- COMPLETED. Notify -[6a7 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.Register.HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346 -[6a8 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6a9 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal.callChaincode -> DEBU Exit -[6aa 10-12 08:32:47.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 -[6ab 10-12 08:32:47.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 [30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346] -[6ac 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.simulateProposal -> DEBU Exit -[6ad 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Entry - txid: 30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346 channel id: businesschannel chaincode id: name:"mycc" -[6ae 10-12 08:32:47.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 -[6af 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Entry - txid: 30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346 channel id: businesschannel version: 1.1.0 -[6b0 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.NewCCContext -> DEBU NewCCCC (chain=businesschannel,chaincode=escc,version=1.1.0,txid=30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346,syscc=true,proposal=0xc421856dc0,canname=escc:1.1.0 -[6b1 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Launch -> DEBU chaincode is running(no need to launch) : escc:1.1.0 -[6b2 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Entry -[6b3 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU chaincode canonical name: escc:1.1.0 -[6b4 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [30fd87fe]Inside sendExecuteMessage. Message TRANSACTION -[6b5 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Setting chaincode proposal context... -[6b6 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage.setChaincodeProposal -> DEBU Proposal different from nil. Creating chaincode proposal context... -[6b7 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute.sendExecuteMessage -> DEBU [30fd87fe]sendExecuteMsg trigger event TRANSACTION -[6b8 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]Move state message TRANSACTION -[6b9 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe]Fabric side Handling ChaincodeMessage of type: TRANSACTION in state ready -[6ba 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.filterError -> DEBU Ignoring NoTransitionError: no transition -[6bb 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]sending state message TRANSACTION -[6bc 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30fd87fe]Received message TRANSACTION from shim -[6bd 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30fd87fe]Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[6be 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.Event.beforeEventCallbacks.func5.beforeTransaction -> DEBU [30fd87fe]Received TRANSACTION, invoking transaction on chaincode(Src:ready, Dst:ready) -[6bf 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC starts: 8 args -[6c0 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/scc/escc] Invoke -> DEBU ESCC exits successfully -[6c1 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30fd87fe]Transaction completed. Sending COMPLETED -[6c2 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30fd87fe]Move state message COMPLETED -[6c3 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [30fd87fe]Handling ChaincodeMessage of type: COMPLETED(state:ready) -[6c4 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [30fd87fe]send state message COMPLETED -[6c5 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream -> DEBU [30fd87fe]Received message COMPLETED from shim -[6c6 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe]Fabric side Handling ChaincodeMessage of type: COMPLETED in state ready -[6c7 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage -> DEBU [30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346]HandleMessage- COMPLETED. Notify -[6c8 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.HandleChaincodeStream.processStream.handleMessage.notify -> DEBU notifying Txid:30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346 -[6c9 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode.ExecuteChaincode.Execute.Execute -> DEBU Exit -[6ca 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal.callChaincode -> DEBU Exit -[6cb 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.endorseProposal -> DEBU Exit -[6cc 10-12 08:32:47.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 [30fd87fe0e6cd4b47cdc5150c5090c1c6906ffe3a62e8ac96489c33bb9317346] -[6cd 10-12 08:32:47.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal -> DEBU Exit diff --git a/hyperledger_fabric/latest/kafka/logs/progress.log b/hyperledger_fabric/latest/kafka/logs/progress.log deleted file mode 100644 index 90e67e4c..00000000 Binary files a/hyperledger_fabric/latest/kafka/logs/progress.log and /dev/null differ diff --git a/hyperledger_fabric/latest/kafka/run_configtxlator.sh b/hyperledger_fabric/latest/kafka/run_configtxlator.sh deleted file mode 100644 index c2d13bb4..00000000 --- a/hyperledger_fabric/latest/kafka/run_configtxlator.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/bash -# More details about configtxlator, see http://hlf.readthedocs.io/en/latest/configtxlator.html - -CONFIGTXLATOR_IMG=yeasy/hyperledger-fabric:latest -CONFIGTXLATOR_CONTAINER=configtxlator - -ARTIFACTS_DIR=channel-artifacts - -ORDERER_GENESIS_BLOCK=${ARTIFACTS_DIR}/orderer.genesis.block -ORDERER_GENESIS_UPDATED_BLOCK=${ARTIFACTS_DIR}/orderer.genesis.updated.block -ORDERER_GENESIS_JSON=${ARTIFACTS_DIR}/orderer.genesis.json -ORDERER_GENESIS_UPDATED_JSON=${ARTIFACTS_DIR}/orderer.genesis.updated.json -MAXBATCHSIZEPATH=".data.data[0].payload.data.config.channel_group.groups.Orderer.values.BatchSize.value.max_message_count" - -echo "Clean potential existing container $CONFIGTXLATOR_CONTAINER" -[ "$(docker ps -a | grep $CONFIGTXLATOR_CONTAINER)" ] && docker rm -f $CONFIGTXLATOR_CONTAINER - -echo "Start configtxlator service and listen on port 7059" -docker run \ - -d -it \ - --name ${CONFIGTXLATOR_CONTAINER} \ - -p 127.0.0.1:7059:7059 \ - ${CONFIGTXLATOR_IMG} \ - configtxlator start - -sleep 1 - -if [ -f ${ORDERER_GENESIS_BLOCK} ]; then - echo "Decoding the orderer genesis block to json" - curl -X POST \ - --data-binary @${ORDERER_GENESIS_BLOCK} \ - http://127.0.0.1:7059/protolator/decode/common.Block \ - > ${ORDERER_GENESIS_JSON} - - echo "Checking existing Orderer.BatchSize.max_message_count in the genesis json" - jq "$MAXBATCHSIZEPATH" channel-artifacts/orderer.genesis.json - - echo "Creating new genesis json with updated Orderer.BatchSize.max_message_count" - jq "$MAXBATCHSIZEPATH=20" ${ORDERER_GENESIS_JSON} > ${ORDERER_GENESIS_UPDATED_JSON} - - echo "Re-Encoding the orderer genesis json to block" - curl -X POST \ - --data-binary @${ORDERER_GENESIS_UPDATED_JSON} \ - http://127.0.0.1:7059/protolator/encode/common.Block \ - >${ORDERER_GENESIS_UPDATED_BLOCK} -fi - -for i in {0..9} -do - BLOCK_FILE=${ARTIFACTS_DIR}/block_${i}.block - if [ -f ${BLOCK_FILE} ]; then - echo "Decoding block $i of app channel to json" - curl -X POST \ - --data-binary @${BLOCK_FILE} \ - http://127.0.0.1:7059/protolator/decode/common.Block \ - > ${BLOCK_FILE}.json - fi -done - -docker rm -f $CONFIGTXLATOR_CONTAINER diff --git a/hyperledger_fabric/latest/scripts/chaincode_example02 b/hyperledger_fabric/latest/scripts/chaincode_example02 deleted file mode 100644 index 6f4d0d84..00000000 Binary files a/hyperledger_fabric/latest/scripts/chaincode_example02 and /dev/null differ diff --git a/hyperledger_fabric/latest/scripts/func.sh b/hyperledger_fabric/latest/scripts/func.sh index b5ec1c5a..9075280b 100644 --- a/hyperledger_fabric/latest/scripts/func.sh +++ b/hyperledger_fabric/latest/scripts/func.sh @@ -13,55 +13,49 @@ else alias echo_b="echo" fi -CHANNEL_NAME="$1" -: ${CHANNEL_NAME:="businesschannel"} - -CC_NAME=mycc - -: ${TIMEOUT:="60"} -COUNTER=1 -MAX_RETRY=5 - -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 +# Define those global variables +if [ -f ./variables.sh ]; then + source ./variables.sh +elif [ -f scripts/variables.sh ]; then + source scripts/variables.sh +fi +# Verify $1 is not 0, then output error msg $2 and exit verifyResult () { if [ $1 -ne 0 ] ; then - echo_b "!!!!!!!!!!!!!!! "$2" !!!!!!!!!!!!!!!!" - echo_r "================== ERROR !!! FAILED to execute End-2-End Scenario ==================" - echo - exit 1 + echo_b "$2" + echo_r "=== ERROR !!! FAILED to execute End-2-End Scenario ===" + exit 1 fi } -setGlobals () { - if [ $1 -eq 0 -o $1 -eq 1 ] ; then - CORE_PEER_LOCALMSPID="Org1MSP" - CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt - CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp - if [ $1 -eq 0 ]; then - CORE_PEER_ADDRESS=peer0.org1.example.com:7051 - else - CORE_PEER_ADDRESS=peer1.org1.example.com:7051 - fi - else - CORE_PEER_LOCALMSPID="Org2MSP" - CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt - CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp - if [ $1 -eq 2 ]; then - CORE_PEER_ADDRESS=peer0.org2.example.com:7051 - else - CORE_PEER_ADDRESS=peer1.org2.example.com:7051 - fi - fi +setOrdererEnvs () { + CORE_PEER_LOCALMSPID="OrdererMSP" + CORE_PEER_MSPCONFIGPATH=${ORDERER_ADMIN_MSP} + CORE_PEER_TLS_ROOTCERT_FILE=${ORDERER_TLS_ROOTCERT} + #t="\${ORG${org}_PEER${peer}_URL}" && CORE_PEER_ADDRESS=`eval echo $t` +} - env |grep CORE +# Set global env variables for fabric usage +# Usage: setEnvs org peer +setEnvs () { + local org=$1 # 1 or 2 + local peer=$2 # 0 or 1 + local t="" + CORE_PEER_LOCALMSPID="Org${org}MSP" + #CORE_PEER_MSPCONFIGPATH=\$${ORG${org}_ADMIN_MSP} + t="\${ORG${org}_ADMIN_MSP}" && CORE_PEER_MSPCONFIGPATH=`eval echo $t` + t="\${ORG${org}_PEER${peer}_TLS_ROOTCERT}" && CORE_PEER_TLS_ROOTCERT_FILE=`eval echo $t` + t="\${ORG${org}_PEER${peer}_URL}" && CORE_PEER_ADDRESS=`eval echo $t` + + # env |grep CORE } checkOSNAvailability() { #Use orderer's MSP for fetching system channel config block CORE_PEER_LOCALMSPID="OrdererMSP" - CORE_PEER_TLS_ROOTCERT_FILE=$ORDERER_CA - CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp + CORE_PEER_TLS_ROOTCERT_FILE=${ORDERER_TLS_CA} + CORE_PEER_MSPCONFIGPATH=${ORDERER_MSP} local rc=1 local starttime=$(date +%s) @@ -71,264 +65,407 @@ checkOSNAvailability() { while test "$(($(date +%s)-starttime))" -lt "$TIMEOUT" -a $rc -ne 0 do sleep 3 - echo "Attempting to fetch system channel 'testchainid' ...$(($(date +%s)-starttime)) secs" + echo "Attempting to fetch system channel ...$(($(date +%s)-starttime)) secs" if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then - peer channel fetch 0 -o orderer.example.com:7050 -c "testchainid" >&log.txt + peer channel fetch 0 -o ${ORDERER_URL} -c "testchainid" >&log.txt else - peer channel fetch 0 -o orderer.example.com:7050 -c "testchainid" --tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA >&log.txt + peer channel fetch 0 -o ${ORDERER_URL} -c "testchainid" --tls $CORE_PEER_TLS_ENABLED --cafile ${ORDERER_TLS_CA} >&log.txt fi test $? -eq 0 && VALUE=$(cat log.txt | awk '/Received block/ {print $NF}') test "$VALUE" = "0" && let rc=0 done cat log.txt verifyResult $rc "Ordering Service is not available, Please try again ..." - echo "===================== Ordering Service is up and running ===================== " + echo "=== Ordering Service is up and running === " echo } +# Internal func called by channelCreate +channelCreateAction(){ + local channel=$1 + if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then + peer channel create \ + -o ${ORDERER_URL} \ + -c ${channel} \ + -f ${CHANNEL_ARTIFACTS}/channel.tx \ + --timeout $TIMEOUT \ + >&log.txt + else + peer channel create \ + -o ${ORDERER_URL} \ + -c ${channel} \ + -f ${CHANNEL_ARTIFACTS}/channel.tx \ + --timeout $TIMEOUT \ + --tls $CORE_PEER_TLS_ENABLED \ + --cafile ${ORDERER_TLS_CA} \ + >&log.txt + fi + return $? +} + # Use peer0/org1 to create a channel +# channelCreate APP_CHANNEL org peer channelCreate() { - CHANNEL_NAME=$1 - echo_b "===================== Create Channel \"$CHANNEL_NAME\" ===================== " - setGlobals 0 - if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then - peer channel create \ - -o orderer.example.com:7050 \ - -c $CHANNEL_NAME \ - -f ./channel-artifacts/channel.tx \ - --timeout $TIMEOUT \ - >&log.txt - else - peer channel create \ - -o orderer.example.com:7050 \ - -c $CHANNEL_NAME \ - -f ./channel-artifacts/channel.tx \ - --tls $CORE_PEER_TLS_ENABLED \ - --cafile $ORDERER_CA \ - --timeout $TIMEOUT \ - >&log.txt - fi - res=$? + local channel=$1 + local org=$2 + local peer=$3 + + echo_b "=== Create Channel ${channel} by org $org peer $peer === " + local counter=0 + setEnvs $org $peer + channelCreateAction ${channel} + local res=$? + while [ ${counter} -lt ${MAX_RETRY} -a ${res} -ne 0 ]; do + echo_b "Failed to create channel $channel, retry after 3s" + sleep 3 + channelCreateAction ${channel} + res=$? + let counter=${counter}+1 + #COUNTER=` expr $COUNTER + 1` + done cat log.txt - if [ $res -ne 0 -a $COUNTER -lt $MAX_RETRY ]; then - COUNTER=` expr $COUNTER + 1` - echo_b "Fail to create channel $CHANNEL_NAME, Retry after 3 seconds" - sleep 3 - channelCreate $CHANNEL_NAME - else - COUNTER=1 - fi - verifyResult $res "Channel creation failed" - echo_g "===================== Channel \"$CHANNEL_NAME\" is created successfully ===================== " - echo + verifyResult ${res} "Channel ${channel} creation failed" + echo_g "=== Channel ${channel} is created. === " } +# called by channelJoinWithRetry +channelJoinAction () { + local channel=$1 + peer channel join \ + -b ${channel}.block \ + >&log.txt +} + +## Sometimes Join takes time hence RETRY atleast for 5 times +channelJoinWithRetry () { + local channel=$1 + local peer=$2 + local counter=0 + channelJoinAction ${channel} + local res=$? + while [ ${counter} -lt ${MAX_RETRY} -a ${res} -ne 0 ]; do + echo_b "peer${peer} failed to join channel ${channel}, retry after 2s" + sleep 2 + channelJoinAction ${channel} + res=$? + let counter=${counter}+1 + done + cat log.txt + verifyResult ${res} "After $MAX_RETRY attempts, peer${peer} failed to Join the Channel" +} + +# Join given (by default all) peers into the channel +# channelJoin channel org peer +channelJoin () { + local channel=$1 + local org=$2 + local peer=$3 + echo_b "=== Join org$org/peer$peer into channel ${channel} === " + setEnvs $org $peer + channelJoinWithRetry ${channel} $peer + echo_g "=== org$org/peer$peer joined into channel ${channel} === " +} + +# Update the anchor peer at given channel +# updateAnchorPeers channel peer updateAnchorPeers() { - CHANNEL_NAME=$1 - PEER=$2 - setGlobals $PEER - echo_b "===================== Update Anchor peers for org \"$CORE_PEER_LOCALMSPID\" on \"$CHANNEL_NAME\" ===================== " + local channel=$1 + local org=$2 + local peer=$3 + setEnvs $org $peer + echo_b "=== Update Anchor peers for org \"$CORE_PEER_LOCALMSPID\" on ${channel} === " if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then - peer channel update -o orderer.example.com:7050 -c $CHANNEL_NAME -f ./channel-artifacts/${CORE_PEER_LOCALMSPID}anchors.tx >&log.txt + peer channel update \ + -o ${ORDERER_URL} \ + -c ${channel} \ + -f ${CHANNEL_ARTIFACTS}/${CORE_PEER_LOCALMSPID}anchors.tx \ + >&log.txt else - peer channel update -o orderer.example.com:7050 -c $CHANNEL_NAME -f ./channel-artifacts/${CORE_PEER_LOCALMSPID}anchors.tx --tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA >&log.txt + peer channel update \ + -o ${ORDERER_URL} \ + -c ${channel} \ + -f ${CHANNEL_ARTIFACTS}/${CORE_PEER_LOCALMSPID}anchors.tx \ + --tls $CORE_PEER_TLS_ENABLED \ + --cafile ${ORDERER_TLS_CA} \ + >&log.txt fi res=$? cat log.txt verifyResult $res "Anchor peer update failed" - echo_g "===================== Anchor peers for org \"$CORE_PEER_LOCALMSPID\" on \"$CHANNEL_NAME\" is updated successfully ===================== " - sleep 5 - echo + echo_g "=== Anchor peers for org \"$CORE_PEER_LOCALMSPID\" on ${channel} is updated. === " + sleep 2 } -## Sometimes Join takes time hence RETRY atleast for 5 times -joinWithRetry () { - peer channel join -b $CHANNEL_NAME.block >&log.txt +# Install chaincode on specified peer node +# chaincodeInstall peer cc_name version path +chaincodeInstall () { + local org=$1 + local peer=$2 + local name=$3 + local version=$4 + local path=$5 + echo_b "=== Install Chaincode $name:$version ($path) on org${org} peer$peer === " + setEnvs $org $peer + peer chaincode install \ + -n ${name} \ + -v $version \ + -p ${path} \ + >&log.txt res=$? cat log.txt - if [ $res -ne 0 -a $COUNTER -lt $MAX_RETRY ]; then - COUNTER=` expr $COUNTER + 1` - echo_b "PEER$1 failed to join the channel, Retry after 2 seconds" - sleep 2 - joinWithRetry $1 - else - COUNTER=1 - fi - verifyResult $res "After $MAX_RETRY attempts, PEER$ch has failed to Join the Channel" -} - -# Join given (by default all) peers into the channel -channelJoin () { - CHANNEL_NAME=$1 - echo_b "===================== Join peers into the channel \"$CHANNEL_NAME\" ===================== " - peers_to_join=$(seq 0 3) - if [ $# -gt 1 ]; then - peers_to_join=${@:2} - fi - for i in $peers_to_join; do - setGlobals $i - joinWithRetry $i - echo_g "===================== PEER$i joined into the channel \"$CHANNEL_NAME\" ===================== " - sleep 2 - echo - done + verifyResult $res "Chaincode installation on remote peer$peer has Failed" + echo_g "=== Chaincode is installed on remote peer$peer === " } # Instantiate chaincode on specifized peer node +# chaincodeInstantiate channel org peer name version args chaincodeInstantiate () { - CHANNEL_NAME=$1 - PEER=$2 - setGlobals $PEER - echo_b "===================== chaincodeInstantiate for channel $CHANNEL_NAME on peer $PEER ============" + local channel=$1 + local org=$2 + local peer=$3 + local name=$4 + local version=$5 + local args=$6 + setEnvs $org $peer + echo_b "=== chaincodeInstantiate for channel ${channel} on org $org peer $peer ====" # while 'peer chaincode' command can get the orderer endpoint from the peer (if join was successful), # lets supply it directly as we know it using the "-o" option if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then peer chaincode instantiate \ - -o orderer.example.com:7050 \ - -C $CHANNEL_NAME \ - -n $CC_NAME \ - -v 1.0 \ - -c '{"Args":["init","a","100","b","200"]}' \ + -o ${ORDERER_URL} \ + -C ${channel} \ + -n ${name} \ + -v ${version} \ + -c ${args} \ -P "OR ('Org1MSP.member','Org2MSP.member')" \ >&log.txt else peer chaincode instantiate \ - -o orderer.example.com:7050 \ - -C $CHANNEL_NAME \ - -n $CC_NAME \ - -v 1.0 \ - -c '{"Args":["init","a","100","b","200"]}' \ + -o ${ORDERER_URL} \ + -C ${channel} \ + -n ${name} \ + -v ${version} \ + -c ${args} \ -P "OR ('Org1MSP.member','Org2MSP.member')" \ --tls $CORE_PEER_TLS_ENABLED \ - --cafile $ORDERER_CA \ + --cafile ${ORDERER_TLS_CA} \ >&log.txt fi res=$? cat log.txt - verifyResult $res "Chaincode instantiation on PEER$PEER in channel '$CHANNEL_NAME' failed" - echo_g "===================== Chaincode Instantiation on PEER$PEER in channel '$CHANNEL_NAME' is successful ===================== " - echo + verifyResult $res "ChaincodeInstantiation on peer$peer in channel ${channel} failed" + echo_g "=== ChaincodeInstantiation on peer$peer in channel ${channel} is successful ===" } + +# Usage: chaincodeInvoke channel org peer name args +chaincodeInvoke () { + local channel=$1 + local org=$2 + local peer=$3 + local name=$4 + local args=$5 + echo_g "=== Invoke transaction on peer$peer in channel ${channel} === " + setEnvs $org $peer + # while 'peer chaincode' command can get the orderer endpoint from the peer (if join was successful), + # lets supply it directly as we know it using the "-o" option + if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then + peer chaincode invoke \ + -o ${ORDERER_URL} \ + -C ${channel} \ + -n ${name} \ + -c ${args} \ + >&log.txt + else + peer chaincode invoke \ + -o ${ORDERER_URL} \ + -C ${channel} \ + -n ${name} \ + -c ${args} \ + --tls $CORE_PEER_TLS_ENABLED \ + --cafile ${ORDERER_TLS_CA} \ + >&log.txt + fi + res=$? + cat log.txt + verifyResult $res "Invoke execution on peer$peer failed " + echo_g "=== Invoke transaction on peer$peer in channel ${channel} is successful === " +} + +# query channel peer name args expected_result chaincodeQuery () { - PEER=$1 - echo_b "===================== Querying on PEER$PEER in channel '$CHANNEL_NAME'... ===================== " - setGlobals $PEER + local channel=$1 + local org=$2 + local peer=$3 + local name=$4 + local args=$5 + [ $# -gt 5 ] && local expected_result=$6 + echo_b "=== Querying on org$org peer$peer in channel ${channel}... === " local rc=1 local starttime=$(date +%s) - # continue to poll + setEnvs $org $peer # we either get a successful response, or reach TIMEOUT while test "$(($(date +%s)-starttime))" -lt "$TIMEOUT" -a $rc -ne 0 do - sleep 3 - echo_b "Attempting to Query PEER$PEER ...$(($(date +%s)-starttime)) secs" - peer chaincode query -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["query","a"]}' >&log.txt - test $? -eq 0 && VALUE=$(cat log.txt | awk '/Query Result/ {print $NF}') - test "$VALUE" = "$2" && let rc=0 + echo_b "Attempting to Query peer$peer ...$(($(date +%s)-starttime)) secs" + peer chaincode query \ + -C "${channel}" \ + -n "${name}" \ + -c "${args}" \ + >&log.txt + if [ $# -gt 5 ]; then # need to check the result + test $? -eq 0 && VALUE=$(cat log.txt | awk '/Query Result/ {print $NF}') + test "$VALUE" = "${expected_result}" && let rc=0 + else + rc=$? + fi + sleep 2 done echo cat log.txt if test $rc -eq 0 ; then - echo_g "===================== Query on PEER$PEER in channel '$CHANNEL_NAME' is successful ===================== " + echo_g "=== Query on peer$peer in channel ${channel} is successful === " else - echo_r "!!!!!!!!!!!!!!! Query result on PEER$PEER is INVALID !!!!!!!!!!!!!!!!" - echo_r "================== ERROR !!! FAILED to execute End-2-End Scenario ==================" + echo_r "Query result on peer$peer is INVALID" + echo_r "=== ERROR !!! FAILED to execute End-2-End Scenario ===" echo exit 1 fi } -chaincodeInvoke () { - PEER=$1 - echo_g "===================== Invoke transaction on PEER$PEER in channel '$CHANNEL_NAME'===================== " - setGlobals $PEER - # while 'peer chaincode' command can get the orderer endpoint from the peer (if join was successful), - # lets supply it directly as we know it using the "-o" option - if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then - peer chaincode invoke -o orderer.example.com:7050 -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["invoke","a","b","10"]}' >&log.txt - else - peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["invoke","a","b","10"]}' >&log.txt - fi - res=$? - cat log.txt - verifyResult $res "Invoke execution on PEER$PEER failed " - echo_g "===================== Invoke transaction on PEER$PEER in channel '$CHANNEL_NAME' is successful ===================== " - echo -} - -# Install chaincode on specifized peer node -chaincodeInstall () { - PEER=$1 - echo_b "===================== Install Chaincode on remote peer PEER$PEER ===================== " - VERSION=$2 - setGlobals $PEER - peer chaincode install -n $CC_NAME -v $VERSION -p github.com/hyperledger/fabric/examples/chaincode/go/chaincode_example02 >&log.txt - res=$? - cat log.txt - verifyResult $res "Chaincode installation on remote peer PEER$PEER has Failed" - echo_g "===================== Chaincode is installed on remote peer PEER$PEER ===================== " - echo -} # Start chaincode with dev mode chaincodeStartDev () { - PEER=$1 - VERSION=$2 - setGlobals $PEER + local peer=$1 + local version=$2 + #setEnvs $peer + #setEnvs 1 0 + setEnvs 1 0 CORE_CHAINCODE_LOGLEVEL=debug \ - CORE_PEER_ADDRESS=peer${PEER}.org1.example.com:7052 \ - CORE_CHAINCODE_ID_NAME=mycc:${VERSION} \ + CORE_PEER_ADDRESS=peer${peer}.org1.example.com:7052 \ + CORE_CHAINCODE_ID_NAME=mycc:${version} \ nohup ./scripts/chaincode_example02 > chaincode_dev.log & res=$? cat log.txt verifyResult $res "Chaincode start in dev mode has Failed" - echo_g "===================== Chaincode started in dev mode ===================== " + echo_g "=== Chaincode started in dev mode === " echo } -# chaincodeUpgrade 0 1.1 +# chaincodeUpgrade channel peer name version args chaincodeUpgrade () { - CHANNEL_NAME=$1 - PEER=$2 - VERSION=$3 - echo_b "===================== Upgrade chaincode to version $VERSION on PEER$PEER in channel '$CHANNEL_NAME' ===================== " - setGlobals $PEER + local channel=$1 + local org=$2 + local peer=$3 + local name=$4 + local version=$5 + local args=$6 + echo_b "=== Upgrade chaincode to version $version on peer$peer in channel ${channel} === " + + setEnvs $org $peer # while 'peer chaincode' command can get the orderer endpoint from the peer (if join was successful), # lets supply it directly as we know it using the "-o" option if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then - peer chaincode upgrade -o orderer.example.com:7050 -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["upgrade","a","100","b","200"]}' -v $VERSION >&log.txt + peer chaincode upgrade \ + -o ${ORDERER_URL} \ + -C ${channel} \ + -n ${name} \ + -v ${version} \ + -c ${args} \ + >&log.txt else - peer chaincode upgrade -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["upgrade","a","100","b","200"]}' -v $VERSION >&log.txt + peer chaincode upgrade \ + -o ${ORDERER_URL} \ + -C ${channel} \ + -n ${name} \ + -v ${version} \ + -c ${args} \ + --tls $CORE_PEER_TLS_ENABLED \ + --cafile ${ORDERER_TLS_CA} \ + >&log.txt fi res=$? cat log.txt - verifyResult $res "Upgrade execution on PEER$PEER failed " - echo_g "===================== Upgrade transaction on PEER$PEER in channel '$CHANNEL_NAME' is successful ===================== " + verifyResult $res "Upgrade execution on peer$peer failed " + echo_g "=== Upgrade transaction on peer$peer in channel ${channel} is successful === " echo } +# Fetch some block from a given channel: channel, peer, blockNum channelFetch () { - PEER=$1 - BLOCK_NO=$2 - echo_b "===================== Fetch block $BLOCK_NO on PEER$PEER in channel '$CHANNEL_NAME' ===================== " - setGlobals $PEER + local channel=$1 + local org=$2 + local peer=$3 + local num=$4 + echo_b "=== Fetch block $num of channel $channel === " + + #setEnvs $org $peer + setOrdererEnvs # while 'peer chaincode' command can get the orderer endpoint from the peer (if join was successful), # lets supply it directly as we know it using the "-o" option if [ -z "${CORE_PEER_TLS_ENABLED}" -o "${CORE_PEER_TLS_ENABLED}" = "false" ]; then - peer channel fetch $BLOCK_NO \ - -o orderer.example.com:7050 \ - -c ${CHANNEL_NAME} >&log.txt + peer channel fetch $num ${CHANNEL_ARTIFACTS}/${channel}_${num}.block \ + -o ${ORDERER_URL} \ + -c ${channel} \ + >&log.txt else - peer channel fetch $BLOCK_NO block_${BLOCK_NO}.block \ - -o orderer.example.com:7050 \ - -c $CHANNEL_NAME \ + peer channel fetch $num ${CHANNEL_ARTIFACTS}/${channel}_${num}.block \ + -o ${ORDERER_URL} \ + -c ${channel} \ --tls \ - --cafile $ORDERER_CA >&log.txt + --cafile ${ORDERER_TLS_CA} \ + >&log.txt fi res=$? cat log.txt - verifyResult $res "Fetch block on PEER$PEER failed " - echo_g "===================== Fetch block on PEER$PEER in channel '$CHANNEL_NAME' is successful ===================== " - echo + verifyResult $res "Fetch block $num of channel $channel failed" + echo_g "=== Fetch block $num of channel $channel is successful === " +} + +# configtxlator encode json to pb +# Usage: configtxlatorEncode msgType input output +configtxlatorEncode() { + local msgType=$1 + local input=$2 + local output=$3 + + echo_b "Encode $input --> $output using type $msgType" + curl -sX POST \ + --data-binary @${input} \ + ${CTL_ENCODE_URL}/${msgType} \ + >${output} +} + +# configtxlator decode pb to json +# Usage: configtxlatorEncode msgType input output +configtxlatorDecode() { + local msgType=$1 + local input=$2 + local output=$3 + + echo_b "Config Decode $input --> $output using type $msgType" + curl -sX POST \ + --data-binary @${input} \ + ${CTL_DECODE_URL}/${msgType} \ + > ${output} +} + +# compute diff between two pb +# Usage: configtxlatorCompare channel origin updated output +configtxlatorCompare() { + local channel=$1 + local origin=$2 + local updated=$3 + local output=$3 + + echo_b "Config Compare $origin vs $updated > ${output} in channel $channel" + curl -sX POST \ + -F channel="${channel}" \ + -F "original=@${origin}" \ + -F "updated=@${updated}" \ + "${CTL_COMPARE_URL}" \ + > "${output}" + + [ $? -eq 0 ] || echo_r "Failed to compute config update" } \ No newline at end of file diff --git a/hyperledger_fabric/latest/scripts/init_chaincode_dev.sh b/hyperledger_fabric/latest/scripts/init_chaincode_dev.sh index 632e2f06..1e045284 100644 --- a/hyperledger_fabric/latest/scripts/init_chaincode_dev.sh +++ b/hyperledger_fabric/latest/scripts/init_chaincode_dev.sh @@ -14,7 +14,7 @@ echo " ==========initialize businesschannel========== " echo " ============================================== " echo -echo_b "Channel name : "$CHANNEL_NAME +echo_b "Channel name: "${APP_CHANNEL} ## Create channel echo_b "Creating channel..." @@ -24,7 +24,7 @@ sleep 1 ## Join all the peers to the channel echo_b "Having peer0 join the channel..." -channelJoin 0 +channelJoin ${APP_CHANNEL} 0 sleep 1 diff --git a/hyperledger_fabric/latest/scripts/initialize_all.sh b/hyperledger_fabric/latest/scripts/initialize_all.sh deleted file mode 100644 index 6af66bd3..00000000 --- a/hyperledger_fabric/latest/scripts/initialize_all.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/bash - -# Importing useful functions for cc testing -if [ -f ./func.sh ]; then - source ./func.sh -elif [ -f scripts/func.sh ]; then - source scripts/func.sh -fi - -echo -echo " ============================================== " -echo " ==========initialize businesschannel========== " -echo " ============================================== " -echo - -## Create channel -echo_b "Creating channel $CHANNEL_NAME..." -channelCreate $CHANNEL_NAME - -## Join all the peers to the channel -echo_b "Having all peers join the channel $CHANNEL_NAME..." -channelJoin $CHANNEL_NAME - - -## Set the anchor peers for each org in the channel -echo_b "Updating anchor peers for org1..." -updateAnchorPeers $CHANNEL_NAME 0 -echo_b "Updating anchor peers for org2..." -updateAnchorPeers $CHANNEL_NAME 2 - -## Install chaincode on all peers -echo_b "Installing chaincode on all 4 peers..." -chaincodeInstall 0 1.0 -chaincodeInstall 1 1.0 -chaincodeInstall 2 1.0 -chaincodeInstall 3 1.0 - -# Instantiate chaincode on all peers -# Instantiate can only be executed once on any node -echo_b "Instantiating chaincode on all 2 orgs (once for each org)..." -chaincodeInstantiate $CHANNEL_NAME 0 -chaincodeInstantiate $CHANNEL_NAME 2 - -echo -echo_g "===================== All GOOD, initialization completed ===================== " -echo - -echo -echo " _____ _ _ ____ " -echo "| ____| | \ | | | _ \ " -echo "| _| | \| | | | | |" -echo "| |___ | |\ | | |_| |" -echo "|_____| |_| \_| |____/ " -echo - -exit 0 diff --git a/hyperledger_fabric/latest/scripts/initialize_peer0.sh b/hyperledger_fabric/latest/scripts/initialize_peer0.sh index c6e54de8..67de2270 100644 --- a/hyperledger_fabric/latest/scripts/initialize_peer0.sh +++ b/hyperledger_fabric/latest/scripts/initialize_peer0.sh @@ -7,53 +7,32 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi -echo -echo " ============================================== " -echo " ==========initialize businesschannel========== " -echo " ============================================== " -echo +echo_b " ========== Network initialization start ========== " ## Create channel -echo_b "Creating channel $CHANNEL_NAME..." -channelCreate $CHANNEL_NAME +echo_b "Creating channel ${APP_CHANNEL}..." +channelCreate ${APP_CHANNEL} sleep 1 ## Join all the peers to the channel echo_b "Having peer0 join the channel..." -channelJoin $CHANNEL_NAME 0 - -sleep 1 +channelJoin ${APP_CHANNEL} 0 ## Set the anchor peers for each org in the channel echo_b "Updating anchor peers for peer0/org1... no use for only single channel" -updateAnchorPeers $CHANNEL_NAME 0 - -sleep 1 +updateAnchorPeers ${APP_CHANNEL} 0 ## Install chaincode on all peers echo_b "Installing chaincode on peer0..." -chaincodeInstall 0 1.0 - -sleep 1 +chaincodeInstall 0 ${CC_INIT_ARGS} # Instantiate chaincode on all peers # Instantiate can only be executed once on any node echo_b "Instantiating chaincode on the channel..." -chaincodeInstantiate $CHANNEL_NAME 0 +chaincodeInstantiate ${APP_CHANNEL} 0 -sleep 1 - -echo -echo_g "===================== All GOOD, initialization completed ===================== " -echo - -echo -echo " _____ _ _ ____ " -echo "| ____| | \ | | | _ \ " -echo "| _| | \| | | | | |" -echo "| |___ | |\ | | |_| |" -echo "|_____| |_| \_| |____/ " +echo_g "=============== All GOOD, network initialization done =============== " echo exit 0 diff --git a/hyperledger_fabric/latest/scripts/setup_Docker.sh b/hyperledger_fabric/latest/scripts/setup_Docker.sh deleted file mode 100644 index 7e5a534d..00000000 --- a/hyperledger_fabric/latest/scripts/setup_Docker.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash - -# Install docker on Ubuntu/Debian system - -# Detecting whether can import the header file to render colorful cli output -if [ -f ./header.sh ]; then - source ./header.sh -elif [ -f scripts/header.sh ]; then - source scripts/header.sh -else - alias echo_r="echo" - alias echo_g="echo" - alias echo_b="echo" -fi - -if [ xroot != x$(whoami) ] -then - echo_r "You must run as root (Hint: sudo su)" - exit -fi - -apt-get update && apt-get install curl -y - -echo_b "Install Docker..." - -wget -qO- https://get.docker.com/ | sh -sudo service docker stop -nohup sudo docker daemon --api-cors-header="*" -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock& - -echo_g "Docker Installation Done" - -echo_b "Install Docker-Compose..." - -curl -L https://github.com/docker/compose/releases/download/1.8.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose -chmod +x /usr/local/bin/docker-compose -docker-compose --version - - -echo_g "Docker-Compose Installation Done" - diff --git a/hyperledger_fabric/latest/scripts/test_cc_all.sh b/hyperledger_fabric/latest/scripts/test_cc_all.sh deleted file mode 100644 index c065794f..00000000 --- a/hyperledger_fabric/latest/scripts/test_cc_all.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/bash - -# Importing useful functions for cc testing -if [ -f ./func.sh ]; then - source ./func.sh -elif [ -f scripts/func.sh ]; then - source scripts/func.sh -fi - -echo_b "Channel name : "$CHANNEL_NAME - -#Query on chaincode on Peer0/Org1 -echo_b "Querying chaincode on peer 3..." -chaincodeQuery 3 100 - -#Invoke on chaincode on Peer0/Org1 -echo_b "Sending invoke transaction (transfer 10) on org1/peer0..." -chaincodeInvoke 0 - -#Query on chaincode on Peer1/Org2, check if the result is 90 -echo_b "Querying chaincode on peer 1 and 3..." -chaincodeQuery 1 90 -chaincodeQuery 3 90 - -#Invoke on chaincode on Peer1/Org2 -echo_b "Sending invoke transaction on org2/peer3..." -chaincodeInvoke 3 - -#Query on chaincode on Peer1/Org2, check if the result is 80 -echo_b "Querying chaincode on all 4peers..." -chaincodeQuery 0 80 -chaincodeQuery 2 80 - -#Upgrade to new version -chaincodeInstall 0 1.1 -chaincodeInstall 1 1.1 -chaincodeInstall 2 1.1 -chaincodeInstall 3 1.1 - -chaincodeUpgrade $CHANNEL_NAME 0 1.1 - -chaincodeQuery 0 100 -chaincodeQuery 3 100 - -echo -echo_g "===================== All GOOD, End-2-End execution completed ===================== " -echo - -exit 0 diff --git a/hyperledger_fabric/latest/scripts/test_cc_peer0.sh b/hyperledger_fabric/latest/scripts/test_cc_peer0.sh index fa2a8038..33e99467 100644 --- a/hyperledger_fabric/latest/scripts/test_cc_peer0.sh +++ b/hyperledger_fabric/latest/scripts/test_cc_peer0.sh @@ -7,22 +7,22 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi -echo_b "Channel name : "$CHANNEL_NAME +echo_b "Channel name: "${APP_CHANNEL} -echo_b "====================Query the existing value of a====================================" -chaincodeQuery 0 100 +echo_b "Query the existing value of a" +chaincodeQuery ${APP_CHANNEL} 0 ${CC_NAME} ${CC_QUERY_ARGS} 100 sleep 1 -echo_b "=====================Invoke a transaction to transfer 10 from a to b==================" -chaincodeInvoke 0 +echo_b "Invoke a transaction to transfer 10 from a to b" +chaincodeInvoke ${APP_CHANNEL} 0 ${CC_NAME} ${CC_INVOKE_ARGS} sleep 1 -echo_b "=====================Check if the result of a is 90===================================" -chaincodeQuery 0 90 +echo_b "Check if the result of a is 90" +chaincodeQuery ${APP_CHANNEL} 0 ${CC_NAME} ${CC_QUERY_ARGS} 90 echo -echo_g "=====================All GOOD, MVE Test completed ===================== " +echo_g "All GOOD, MVE Test completed" echo exit 0 diff --git a/hyperledger_fabric/latest/scripts/test_fetch.sh b/hyperledger_fabric/latest/scripts/test_fetch.sh index a0c2b4b4..ad51ae1a 100644 --- a/hyperledger_fabric/latest/scripts/test_fetch.sh +++ b/hyperledger_fabric/latest/scripts/test_fetch.sh @@ -9,20 +9,24 @@ elif [ -f scripts/func.sh ]; then source scripts/func.sh fi -echo_b "Channel name: $CHANNEL_NAME" +org=1 +peer=0 -echo_b "====================Fetching blocks================================" +echo_b "=== Fetching blocks ===" -echo_b "Fetch block 0" -channelFetch 0 0 +for i in {0..4} +do + echo_b "Fetch block $i" + channelFetch ${APP_CHANNEL} $org $peer $i +done -echo_b "Fetch block 1" -channelFetch 0 1 +echo_g "Block fetching done!" -echo_b "Fetch block 2" -channelFetch 0 2 -echo_b "Fetch block 3" -channelFetch 0 3 +for i in {0..1} +do + echo_b "Fetch block $i" + channelFetch ${SYS_CHANNEL} $org $peer $i +done -echo_g "Block fetching done!" \ No newline at end of file +exit 0 diff --git a/hyperledger_fabric/latest/scripts/test_lscc.sh b/hyperledger_fabric/latest/scripts/test_lscc.sh index 14b6b371..26466d6a 100644 --- a/hyperledger_fabric/latest/scripts/test_lscc.sh +++ b/hyperledger_fabric/latest/scripts/test_lscc.sh @@ -1,59 +1,63 @@ #!/usr/bin/env bash -# This script will run some qscc queries for testing. +# This script will run some lscc queries for testing. -# Detecting whether can import the header file to render colorful cli output -# Need add choice option -if [ -f ./header.sh ]; then - source ./header.sh -elif [ -f scripts/header.sh ]; then - source scripts/header.sh -else - alias echo_r="echo" - alias echo_g="echo" - alias echo_b="echo" +# Importing useful functions for cc testing +if [ -f ./func.sh ]; then + source ./func.sh +elif [ -f scripts/func.sh ]; then + source scripts/func.sh fi -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 - -CHANNEL_NAME="$1" -: ${CHANNEL_NAME:="businesschannel"} - echo_b "LSCC testing" +org=1 +peer=0 + # invoke required following params #-o orderer.example.com:7050 \ #--tls "true" \ - #--cafile ${ORDERER_CA} \ + #--cafile ${ORDERER_TLS_CA} \ -echo_b "Get id" -peer chaincode query \ - -C "${CHANNEL_NAME}" \ - -n lscc \ - -c '{"Args":["getid","businesschannel", "mycc"]}' +echo_b "LSCC Get id" +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_NAME'"]}' -echo_b "Get cc ChaincodeDeploymentSpec" -peer chaincode query \ - -C "${CHANNEL_NAME}" \ - -n lscc \ - -c '{"Args":["getdepspec","businesschannel", "mycc"]}' +echo_b "LSCC Get cc ChaincodeDeploymentSpec" +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_NAME'"]}' -echo_b "Get cc bytes" -peer chaincode query \ - -C "${CHANNEL_NAME}" \ - -n lscc \ - -c '{"Args":["getccdata","businesschannel", "mycc"]}' +echo_b "LSCC Get cc bytes" +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_NAME'"]}' -echo_b "Get all chaincodes installed on the channel" -peer chaincode query \ - -C "${CHANNEL_NAME}" \ - -n lscc \ - -c '{"Args":["getinstalledchaincodes"]}' +echo_b "LSCC Get all chaincodes installed on the channel" +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getinstalledchaincodes"]}' -echo_b "Get all chaincodes instantiated on the channel" -peer chaincode query \ - -C "${CHANNEL_NAME}" \ - -n lscc \ - -c '{"Args":["getchaincodes"]}' +echo_b "LSCC Get all chaincodes instantiated on the channel" +chaincodeQuery "${APP_CHANNEL}" $org $peer lscc '{"Args":["getchaincodes"]}' + + +#peer chaincode query \ +# -C "${APP_CHANNEL}" \ +# -n lscc \ +# -c '{"Args":["getid","'${APP_CHANNEL}'", "'$CC_NAME'"]}' + +#peer chaincode query \ +# -C "${APP_CHANNEL}" \ +# -n lscc \ +# -c '{"Args":["getdepspec","'${APP_CHANNEL}'", "'$CC_NAME'"]}' + +#peer chaincode query \ +# -C "${APP_CHANNEL}" \ +# -n lscc \ +# -c '{"Args":["getccdata","'${APP_CHANNEL}'", "'$CC_NAME'"]}' + +#peer chaincode query \ +# -C "${APP_CHANNEL}" \ +# -n lscc \ +# -c '{"Args":["getinstalledchaincodes"]}' + +#peer chaincode query \ +# -C "${APP_CHANNEL}" \ +# -n lscc \ +# -c '{"Args":["getchaincodes"]}' echo_g "LSCC testing done!" \ No newline at end of file diff --git a/hyperledger_fabric/latest/scripts/test_qscc.sh b/hyperledger_fabric/latest/scripts/test_qscc.sh index 41bddd72..a0e51fe2 100644 --- a/hyperledger_fabric/latest/scripts/test_qscc.sh +++ b/hyperledger_fabric/latest/scripts/test_qscc.sh @@ -2,26 +2,32 @@ # This script will run some qscc queries for testing. -# Detecting whether can import the header file to render colorful cli output -# Need add choice option -if [ -f ./header.sh ]; then - source ./header.sh -elif [ -f scripts/header.sh ]; then - source scripts/header.sh -else - alias echo_r="echo" - alias echo_g="echo" - alias echo_b="echo" +# Importing useful functions for cc testing +if [ -f ./func.sh ]; then + source ./func.sh +elif [ -f scripts/func.sh ]; then + source scripts/func.sh fi +echo_b "QSCC testing" -#CHANNEL_NAME="$1" -#: ${CHANNEL_NAME:="businesschannel"} +org=1 +peer=0 -echo_b "Qscc GetChainInfo" -peer chaincode query -C "" -n qscc -c '{"Args":["GetChainInfo","businesschannel"]}' +echo_b "QSCC GetChainInfo" +chaincodeQuery ${SYS_CHANNEL} $org $peer qscc '{"Args":["GetChainInfo","'${APP_CHANNEL}'"]}' -echo_b "Qscc GetBlockByNumber 2" -peer chaincode query -C "" -n qscc -c '{"Args":["GetBlockByNumber","businesschannel","2"]}' +echo_b "QSCC GetBlockByNumber 2" +chaincodeQuery ${SYS_CHANNEL} $org $peer qscc '{"Args":["GetBlockByNumber","'${APP_CHANNEL}'","2"]}' -echo_g "Qscc testing done!" \ No newline at end of file +#peer chaincode query \ +# -C "" \ +# -n qscc \ +# -c '{"Args":["GetChainInfo","'${APP_CHANNEL}'"]}' + +#peer chaincode query \ +# -C "" \ +# -n qscc \ +# -c '{"Args":["GetBlockByNumber","'${APP_CHANNEL}'","2"]}' + +echo_g "QSCC testing done!" \ No newline at end of file diff --git a/hyperledger_fabric/latest/solo/README.md b/hyperledger_fabric/latest/solo/README.md index b65ba331..ad9fa2f6 100644 --- a/hyperledger_fabric/latest/solo/README.md +++ b/hyperledger_fabric/latest/solo/README.md @@ -6,13 +6,7 @@ $ HLF_MODE=solo make ``` When the fabric-network fully started, it takes about 30~60s to finish all the test. -### Quick testing with kafka -```bash -$ HLF_MODE=kafka make -``` -When the fabric-network fully started, it takes about 30~60s to finish all the test. - -### Generate crypto-config and channel-artifacts +## Generate crypto-config and channel-artifacts ```bash $ make gen_solo gen_kafka diff --git a/hyperledger_fabric/latest/solo/configtx.yaml b/hyperledger_fabric/latest/solo/configtx.yaml index 1ef7f325..5896e172 100644 --- a/hyperledger_fabric/latest/solo/configtx.yaml +++ b/hyperledger_fabric/latest/solo/configtx.yaml @@ -15,10 +15,14 @@ Profiles: TwoOrgsOrdererGenesis: + Capabilities: + <<: *GlobalCapabilities Orderer: <<: *OrdererDefaults Organizations: - *OrdererOrg + Capabilities: + <<: *OrdererCapabilities Consortiums: SampleConsortium: Organizations: @@ -31,6 +35,8 @@ Profiles: Organizations: - *Org1 - *Org2 + Capabilities: + <<: *ApplicationCapabilities ################################################################################ # @@ -101,7 +107,7 @@ Orderer: &OrdererDefaults # Orderer Type: The orderer implementation to start # Available types are "solo" and "kafka" - OrdererType: solo + OrdererType: kafka Addresses: - orderer.example.com:7050 @@ -151,3 +157,51 @@ Application: &ApplicationDefaults # Organizations is the list of orgs which are defined as participants on # the application side of the network Organizations: +################################################################################ +# +# SECTION: Capabilities +# +# - This section defines the capabilities of fabric network. This is a new +# concept as of v1.1.0 and should not be utilized in mixed networks with +# v1.0.x peers and orderers. Capabilities define features which must be +# present in a fabric binary for that binary to safely participate in the +# fabric network. For instance, if a new MSP type is added, newer binaries +# might recognize and validate the signatures from this type, while older +# binaries without this support would be unable to validate those +# transactions. This could lead to different versions of the fabric binaries +# having different world states. Instead, defining a capability for a channel +# informs those binaries without this capability that they must cease +# processing transactions until they have been upgraded. For v1.0.x if any +# capabilities are defined (including a map with all capabilities turned off) +# then the v1.0.x peer will deliberately crash. +# +################################################################################ +Capabilities: + # Global capabilities apply to both the orderers and the peers and must be + # supported by both. Set the value of the capability to true to require it. + Global: &GlobalCapabilities + # V1.1 for Global is a catchall flag for behavior which has been + # determined to be desired for all orderers and peers running v1.0.x, + # but the modification of which would cause imcompatibilities. Users + # should leave this flag set to true. + V1_1: true + + # Orderer capabilities apply only to the orderers, and may be safely + # manipulated without concern for upgrading peers. Set the value of the + # capability to true to require it. + Orderer: &OrdererCapabilities + # V1.1 for Order is a catchall flag for behavior which has been + # determined to be desired for all orderers running v1.0.x, but the + # modification of which would cause imcompatibilities. Users should + # leave this flag set to true. + V1_1: true + + # Application capabilities apply only to the peer network, and may be safely + # manipulated without concern for upgrading orderers. Set the value of the + # capability to true to require it. + Application: &ApplicationCapabilities + # V1.1 for Application is a catchall flag for behavior which has been + # determined to be desired for all peers running v1.0.x, but the + # modification of which would cause imcompatibilities. Users should + # leave this flag set to true. + V1_1: true \ No newline at end of file diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/df62170baf76f40d5aea422621222c9db110b8e0290050a6764141d17a257faa_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/df62170baf76f40d5aea422621222c9db110b8e0290050a6764141d17a257faa_sk deleted file mode 100644 index dc88a414..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/ca/df62170baf76f40d5aea422621222c9db110b8e0290050a6764141d17a257faa_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgC1xSBCApyvUzYGY/ -7UtHMhsbfD05BaVKwezMkYCdDEuhRANCAARrXk2ZUKzY/47CmJU9cBPhRSG/sSEI -WU+cDDMFc5U/Qs0vaDU02DQ0upYivGV3HJmxkC9lpaJa80p1a3XJgyB+ ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/a839ddc547d434662e7698fed67ebbb61e0ef079938d0e901f14a3b4f80c9596_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/a839ddc547d434662e7698fed67ebbb61e0ef079938d0e901f14a3b4f80c9596_sk deleted file mode 100644 index 697bd4ab..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/a839ddc547d434662e7698fed67ebbb61e0ef079938d0e901f14a3b4f80c9596_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgQzHK5KS0hUPyRhxl -fUXtj9RdR234BASvqWUG33LI7BahRANCAAR83rTI9oLBMGaXh37wQaJVOAvUH5az -+yeNq8CtwVjK0wktvJ9wbPjmPKIdigLUXgFc8isBHppPruD20qmiYevm ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/4c83d137e5c264fd7a84d744b6520816192927e9d9922855c1ccffea37746060_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/4c83d137e5c264fd7a84d744b6520816192927e9d9922855c1ccffea37746060_sk deleted file mode 100644 index 66fc7175..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/tlsca/4c83d137e5c264fd7a84d744b6520816192927e9d9922855c1ccffea37746060_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgVOR2ThmvGgpeQgog -Elr5Dwt5seeBbQXoEWDyaR8tcpehRANCAARCibPlfOB+YEklR43pDlhQsQ+TBU4j -SXFZjsiY8rUuY9EbnVSlpX+4oUjPOn16s1R9Ugv7y+a43Ca9wXuygLXH ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/d625929c9fe6aecac52d1d24992546c290c2ef31802f092a0add9fef7513471b_sk b/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/d625929c9fe6aecac52d1d24992546c290c2ef31802f092a0add9fef7513471b_sk deleted file mode 100644 index 71deec10..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/d625929c9fe6aecac52d1d24992546c290c2ef31802f092a0add9fef7513471b_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgkAvLUTzoD7ZfDyyc -+rL81Uac4GvYdqURL3pNOHQBrZKhRANCAATU23GTWbDOFsBx2Mfd7hpnGyrAr38T -7ZkGDlyh6MLExo0L9Piiy1xcgP/5QSWAWnUWK1ou8XUvhWBAnZXV/WI4 ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/7ec7e7998da730fdc3d4733f979d462c52d2d4cab97ec2004a62c2e3cc391877_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/7ec7e7998da730fdc3d4733f979d462c52d2d4cab97ec2004a62c2e3cc391877_sk deleted file mode 100644 index 72dca086..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/ca/7ec7e7998da730fdc3d4733f979d462c52d2d4cab97ec2004a62c2e3cc391877_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgKcv5anYIMkZD8JdY -aza7fNKmbQZQPqQzW3lFcnFm4wehRANCAATn3ReIZo7PpC6So3h8xtjeK0dwr+Xz -bEy+JL6X1gBpzFHrZMv+sj+2o6lZ0qMqgF8t3lOUYaX1Uzc0ujjyJ2Az ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/eb5902b6a02899fbdbb416718671940b771c5126a8062be9a408187c8da28f83_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/eb5902b6a02899fbdbb416718671940b771c5126a8062be9a408187c8da28f83_sk deleted file mode 100644 index bff8e633..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/eb5902b6a02899fbdbb416718671940b771c5126a8062be9a408187c8da28f83_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgfImAZbUgxKWiXAFI -WPO/DIOoUd0MhEOITI1pKc4I6oWhRANCAATeLXuqgrBACWj2gYv3SpYS9nZZJyCZ -MFnFeIJZpXrO0KwNxlntXgfbkTF74097Wt34oYIW9+/Ii0DrvN89F2vf ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/5663d089e53a588cc4ac651df31744cc1d25a83004a586ce0adb9dc1364db7d2_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/5663d089e53a588cc4ac651df31744cc1d25a83004a586ce0adb9dc1364db7d2_sk deleted file mode 100644 index 74c30a7a..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/5663d089e53a588cc4ac651df31744cc1d25a83004a586ce0adb9dc1364db7d2_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgUoJG3HVm5rTL2Ih9 -kd4PG//5L/d0jnOHhH/jYFsCMKWhRANCAAQTLbWv3Txh1enfTMh6Azp2VAoBApYc -ePPHZYboFXW1+ktsLh+pNiEs6LTGwB+ASPbUA9w+fK28pehZfUfOba+e ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/9cab82fe00bf50a0169c36cebccb44fb4d8de630f2e4385b5eefc32e07b4ec2a_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/9cab82fe00bf50a0169c36cebccb44fb4d8de630f2e4385b5eefc32e07b4ec2a_sk deleted file mode 100644 index a1e33570..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/tlsca/9cab82fe00bf50a0169c36cebccb44fb4d8de630f2e4385b5eefc32e07b4ec2a_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg4Uma/XPd2OLBqtxr -AZXAjcdAiEAigtrfZo8CoW6dyOihRANCAAR5dYM/q7gGJyRJtK67F6FssgVjKkY6 -zjUl9Xwl7Jg6+3DIifIGPnYmjKctqKP/tMEMAPv+NXhdGxCKpcMCGwA2 ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/99107b608e619d4869380c52897fe4fbe20270fbe423fcaf8ffba6fb1327be9a_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/99107b608e619d4869380c52897fe4fbe20270fbe423fcaf8ffba6fb1327be9a_sk deleted file mode 100644 index b8f91be5..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/99107b608e619d4869380c52897fe4fbe20270fbe423fcaf8ffba6fb1327be9a_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgxA5CtwhzmXMZCjxW -K1V8bnGEwBhyHxbmb9Ehd7M/c8ShRANCAARfFUusvo8cax7gqkBccCihd6MlnYSB -Pkwq0pYH7z564gxpaySLoFfW/RMt2bfPOQ2wXcWCAgFaPVTziDQCUoRA ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/07d145941a5fe063f583d6f05435fda02be1faf175ffc679fc2b4b06dbbc6e77_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/07d145941a5fe063f583d6f05435fda02be1faf175ffc679fc2b4b06dbbc6e77_sk deleted file mode 100644 index b190c8d0..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/07d145941a5fe063f583d6f05435fda02be1faf175ffc679fc2b4b06dbbc6e77_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgsvZge0JwqWf8Hp7j -/5mbtpsNxkL38nz+NGGEq9r34hihRANCAATfkg79zg6Eo8QrHX2SzawY+6cEJafD -g5np+SGQ/u7it9WlGJ5qVLx2eBhMtoSP0/+UJKp1QDj3GeTaB8vYQ2uc ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/ebbde32ec1e44f304408d1d0c4526f7a3b41ab881d7dac78b3e6cb55b422fa8e_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/ebbde32ec1e44f304408d1d0c4526f7a3b41ab881d7dac78b3e6cb55b422fa8e_sk deleted file mode 100644 index a66373e6..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/ca/ebbde32ec1e44f304408d1d0c4526f7a3b41ab881d7dac78b3e6cb55b422fa8e_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg3UZ5FX4nVKXAt1ef -rqc+AhbemyVusELl2dEc+BaHg9ahRANCAAQxV0TALPPtFVcpD7KpQrGu5m/7ib7B -t5adzNsiKNzr32/B6eR980UpHeL10Exd+S7qyPMBNChlKcnXbgZlIkuj ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/f933d10b2330f13878031e4c80505676729b341de8c915b4090fc427a8270d29_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/f933d10b2330f13878031e4c80505676729b341de8c915b4090fc427a8270d29_sk deleted file mode 100644 index 64719bba..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/f933d10b2330f13878031e4c80505676729b341de8c915b4090fc427a8270d29_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgBOiGNwK+fiOEOH1b -rTzWoWTZYYoPYAreIAJcoKRcRM+hRANCAASRQxDD9gmqXZMY3UyVzMdIPTkNecWq -NDL03a1PjJ+qL14Qq9TzaukveeXhgctJ3+HUTWaUnbJP0gH10mvq1rGG ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/071d19fa43a05d895a5afbc5eccb7e3a86b7c4585b3425e20e1fd1e5817d8744_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/071d19fa43a05d895a5afbc5eccb7e3a86b7c4585b3425e20e1fd1e5817d8744_sk deleted file mode 100644 index 50c614cb..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/071d19fa43a05d895a5afbc5eccb7e3a86b7c4585b3425e20e1fd1e5817d8744_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgtZzW1bi0iU4jl5Uu -XZ6n9FsGJnQi/Kxz8ZcviDNArnmhRANCAASE1tFZIjmJW1dlZ8ezH1U7SDf0DiOf -Vd8rQ7guN+xkQUQ+3RSrHvOSmnI/7pCA6OQb49JBJGK/AUzMmzY5M/jg ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/7d1a8ada8a0c62424a232b938ddde311e801691c71a2b5bc5a60e9dd278fa660_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/7d1a8ada8a0c62424a232b938ddde311e801691c71a2b5bc5a60e9dd278fa660_sk deleted file mode 100644 index d78e87b7..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/tlsca/7d1a8ada8a0c62424a232b938ddde311e801691c71a2b5bc5a60e9dd278fa660_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgY+jnOS3VKzWzZDGw -ZvoOfQ7XYDvQGlEUm5B2MhD92ZChRANCAAQexkt9mbDYZvz/07/2NM+2gsxSXNOb -rE9CGPxR218zO/4nnkrF7JYJoy4qPQnTmVK0M8gmX1ITIIEMwHqJUn8c ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/3a73128554f9a9ea36dbefade323ef28fc06734323e941fa5efea9852c42e246_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/3a73128554f9a9ea36dbefade323ef28fc06734323e941fa5efea9852c42e246_sk deleted file mode 100644 index 6f66e7c7..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/3a73128554f9a9ea36dbefade323ef28fc06734323e941fa5efea9852c42e246_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgve0rv+90yR+dLlBU -CH27w0vra/2fpBR5mACCbspbKYOhRANCAARJwA2jlfqbp/mMHpSFjZo/+nErB26J -f5gkWniclwNT6esBxPObAaCGAK9tYx2+QrvZy1/NiKYS1lGYNRJgoh7X ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/c70fbdd6c9361b94f671ad987f301bb379ca12c2da085090d1cff04e53d6a89a_sk b/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/c70fbdd6c9361b94f671ad987f301bb379ca12c2da085090d1cff04e53d6a89a_sk deleted file mode 100644 index 52094e58..00000000 --- a/hyperledger_fabric/latest/solo/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/c70fbdd6c9361b94f671ad987f301bb379ca12c2da085090d1cff04e53d6a89a_sk +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN PRIVATE KEY----- -MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgPwIWFDSlRlBF+hOS -ZnwS5JrGFhID+0nxfdsBFrO6v2GhRANCAARENWlM4My+VlP3F17EcOF9OlQN4Dic -9cHks+w9/R49F6VJTZmkVLbYGVF6p/UVlgDgHH6wcLxH9+Xoi7Gl46QE ------END PRIVATE KEY----- diff --git a/hyperledger_fabric/latest/solo/gen_artifacts.sh b/hyperledger_fabric/latest/solo/gen_artifacts.sh deleted file mode 100644 index bffdd97d..00000000 --- a/hyperledger_fabric/latest/solo/gen_artifacts.sh +++ /dev/null @@ -1,58 +0,0 @@ -#! /bin/bash - -GEN_IMG=yeasy/hyperledger-fabric:latest -GEN_CONTAINER=generator -CFG_DIR=/etc/hyperledger/fabric -TMP_DIR=/tmp -ARTIFACTS_DIR=$TMP_DIR/channel-artifacts -CHANNEL_NAME=businesschannel - -echo "Clean potential existing container $GEN_CONTAINER" -[ "$(docker ps -a | grep $GEN_CONTAINER)" ] && docker rm -f $GEN_CONTAINER - -echo "Remove existing artifacts" -rm -rf crypto-config channel-artifacts - -echo "Starting container $GEN_CONTAINER in background" -docker run \ - -d -it \ - --name $GEN_CONTAINER \ - $GEN_IMG bash -c 'while true; do sleep 20171001; done' - -echo "Create the $ARTIFACTS_DIR path" -docker exec -it $GEN_CONTAINER \ - mkdir -p $ARTIFACTS_DIR - -echo "Copy crypto-config.yaml and configtx.yaml into $GEN_CONTAINER:/tmp" -docker cp ./crypto-config.yaml $GEN_CONTAINER:$CFG_DIR -docker cp ./configtx.yaml $GEN_CONTAINER:$CFG_DIR - -echo "Generating crypto-config and export" -docker exec -it $GEN_CONTAINER \ - cryptogen generate --config=$CFG_DIR/crypto-config.yaml --output $TMP_DIR/crypto-config -echo "Export crypto-config to local" -docker cp $GEN_CONTAINER:$TMP_DIR/crypto-config ./ - -echo "Copy crypto-config to the config path" -docker exec -it $GEN_CONTAINER \ - cp -r $TMP_DIR/crypto-config $CFG_DIR - -echo "Generating orderer genesis block file" -docker exec -it $GEN_CONTAINER \ - configtxgen -profile TwoOrgsOrdererGenesis -outputBlock $ARTIFACTS_DIR/orderer.genesis.block - -echo "Create the new application channel tx" -docker exec -it $GEN_CONTAINER \ - configtxgen -profile TwoOrgsChannel -outputCreateChannelTx $ARTIFACTS_DIR/channel.tx -channelID ${CHANNEL_NAME} - -echo "Creating the anchor peer configuration tx" -docker exec -it $GEN_CONTAINER \ - configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate $ARTIFACTS_DIR/Org1MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org1MSP -docker exec -it $GEN_CONTAINER \ - configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate $ARTIFACTS_DIR/Org2MSPanchors.tx -channelID ${CHANNEL_NAME} -asOrg Org2MSP - -echo "Export $ARTIFACTS_DIR to local" -docker cp $GEN_CONTAINER:$ARTIFACTS_DIR ./ - -echo "Remove the container $GEN_CONTAINER" -docker rm -f $GEN_CONTAINER \ No newline at end of file